ODBC Driver for Zoho Creator

Build 25.0.9434

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 [CData].[Employee Management].Leave_Types (Leave_Type) VALUES ('Sick')")
cnxn.commit()
affected = cursor.rowcount

UPDATE

To retrieve updates:

cursor.execute("UPDATE [CData].[Employee Management].Leave_Types SET Leave_Type = 'Sick' WHERE Leave_Type = 'Sick'")
cnxn.commit()
affected = cursor.rowcount

DELETE

To delete updates:

cursor.execute("DELETE FROM [CData].[Employee Management].Leave_Types WHERE Id = '98891000000010007'")
cnxn.commit()
affected = cursor.rowcount

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434