CData Python Connector for Twilio

Build 24.0.9060

Modifying Data

The connection is also used to issue INSERT, UPDATE, and DELETE commands to the data source. Parameters can be used with these statements if desired.

Note that the connector does not support transactions. As with normal write operations, all SQL statements executed by this connector affect the data source immediately. Call the connection's commit() method following the execution.

Insert

The following example adds a new record to the table:
cmd = "INSERT INTO Applications (Sid, Name) VALUES (?, ?)"
params = ["MyApp1", "MyApp2"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies an existing record in the table:
cmd = "UPDATE Applications SET Name = ? WHERE Sid = ?"
params = ["MyApp2", "AP5ddf534702934bd3a446d293e8cdeb1f"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes an existing record from the table:

cmd = "DELETE FROM Applications WHERE Sid = ?"
params = ["AP5ddf534702934bd3a446d293e8cdeb1f"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060