CData Python Connector for Microsoft Dynamics 365

Build 23.0.8839

Batch Processing

This Python connector also supports writing to the data source via batch processing, using the cursor object's executemany() method. This requires both a SQL statement string and a data frame of values that act as a series of parameters for executing the SQL statement.

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 new records to the table:
cur = conn.cursor()
cmd = "INSERT INTO GoalHeadings (GoalHeadingId, GoalHeadingId) VALUES (?, ?)"
params = [["Jon Doe", "John"], ["Jon Doe", "John"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies existing records in the table:
cur = conn.cursor()
cmd = "UPDATE GoalHeadings SET GoalHeadingId = ? WHERE GoalHeadingId = ?"
params = [["John", "'test'"], ["John", "'test'"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes existing records from the table:
cur = conn.cursor()
cmd = "DELETE FROM GoalHeadings WHERE GoalHeadingId = ?"
params = [["'test'"], ["'test'"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

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