SQLRollbackTransaction[conn]
terminates an SQL transaction.
SQLRollbackTransaction[conn,savepoint]
returns to an SQLSavepoint.
Details and Options
Examples
Basic Examples
See Also
Tech Notes
Related Guides
DatabaseLink`
DatabaseLink`
SQLRollbackTransaction
SQLRollbackTransaction[conn]
terminates an SQL transaction.
SQLRollbackTransaction[conn,savepoint]
returns to an SQLSavepoint.
Details and Options
- To use SQLRollbackTransaction, you first need to load DatabaseLink using Needs["DatabaseLink`"].
- A group of SQL commands grouped into a transaction will only take effect permanently when the transaction is committed. The transaction can be canceled or returned to a savepoint.
Examples
Basic Examples (1)
Needs["DatabaseLink`"]If you find that the examples in this section do not work as shown, you may need to install or restore the example database with the "DatabaseLink`DatabaseExamples`" package, as described in Using the Example Databases.
conn = OpenSQLConnection["demo"]SQLCreateTable[conn, SQLTable["TEST"], {SQLColumn["X", "DataTypeName" -> "Integer"], SQLColumn["Y", "DataTypeName" -> "Float"]}];SQLBeginTransaction[conn]SQLInsert[conn, "TEST", {"X", "Y"}, {61, 80.3}];SQLInsert[conn, "TEST", {"X", "Y"}, {72, 5.5}];SQLRollbackTransaction[conn]SQLInsert[conn, "TEST", {"X", "Y"}, {1, N@Pi}];SQLCommitTransaction[conn]The table only contains data inserted after the rollback:
SQLSelect[conn, "TEST"]SQLBeginTransaction[conn]SQLInsert[conn, "TEST", {"X", "Y"}, {61, 80.3}];savepoint = SQLSetSavepoint[conn, "my savepoint"]SQLInsert[conn, "TEST", {"X", "Y"}, {72, 5.5}];SQLRollbackTransaction[conn, savepoint]SQLCommitTransaction[conn]The table only contains data inserted up to the savepoint:
SQLSelect[conn, "TEST"]SQLDropTable[conn, "TEST"];CloseSQLConnection[conn];