ODBC Driver for SAP Concur

Build 22.0.8462

Modifying Data

The following code examples show how to use data modification statements.

Procedure for Updates

You can use execute method to execute data modification statements. This will update the cursor's rowcount property with the number of affected rows.

Note that you must commit the connection after performing the modification, or your changes may be lost.

INSERT

To insert updates:

cursor.execute("INSERT INTO Departments(OfficeId) VALUES ('New Share')")
cnxn.commit()
affected = cursor.rowcount

UPDATE

To retrieve updates:

cursor.execute("UPDATE Departments SET OfficeId = 'New Share' WHERE Id = '1668776136772254'")
cnxn.commit()
affected = cursor.rowcount

DELETE

To delete updates:

cursor.execute("DELETE FROM Departments WHERE OfficeId = '25'")
cnxn.commit()
affected = cursor.rowcount

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462