Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/transaction-usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ fails if the result set is too large,
print(row)


Execute a SQL DML Statement
------------------------------

Modify data from a query against tables in the database. Calls
the ``ExecuteSql`` API, and returns the number of rows affected,

.. code:: python

QUERY = 'DELETE from Table WHERE 1=1'
row_count = transaction.execute_sql(QUERY)


Insert records using a Transaction
----------------------------------

Expand Down