Updating Data with Sessions
Establishing a Session
After a mapping class is defined and a connection is established, the session is used to modify data in the available tables. The session is initially obtained by performing the below:
engine = create_engine("sapsuccessfactors:///?User=username;Password=password;CompanyId=CompanyId;Url=https://api4.successfactors.com") factory = sessionmaker(bind=engine) session = factory()
Insert
First, define an instance of the mapped class, then add it to the active session. Call "commit()" on the session to push all added instances as inserted rows.
new_rec = SampleTable_1(Id="6", Id="Jon Doe", Column1="John") session.add(new_rec) session.commit()
Update
First, fetch the desired records with a filtered query. Then, modify the values of their fields and call "commit()" to update any records modified in this way.
modded_rec = session.query(SampleTable_1).filter_by(Id="6").first() modded_rec.Id = "Jon Doe" modded_rec.Column1 = "John" session.commit()
Delete
First, fetch the desired records with a filtered query, then delete with the session. Call "commit()" to perform the delete operation with the provided rows.
removed_rec = session.query(SampleTable_1).filter_by(Id="6").first() session.delete(removed_rec) session.commit()