Select the product you need help with
How To Implement Nested Transactions with OracleArticle ID: 187289 - View products that this article applies to. This article was previously published under Q187289 SUMMARY
ADO and ODBC do not support nested transactions. However, native Oracle SQL
supports the SAVEPOINT keyword that can be used to simulate nested
transactions.
MORE INFORMATION
The Microsoft Knowledge Base article 177138
(http://support.microsoft.com/kb/177138/EN-US/
)
, entitled "INFO: Nested
Transactions Not Available in ODBC/OLE DB/ADO" says this about nested
transactions:
"Neither Open Database Connectivity (ODBC, nor any released Microsoft
OLE DB Provider supports Nested Transactions. ActiveX Data Objects (ADO)
supports the feature, but only if the underlying provider exposes it.
Currently none of Microsoft's OLE DB providers support Nested
Transactions."
This is true for the Microsoft ODBC for Oracle driver. However, by using the SAVEPOINT keyword, you can simulate Nested Transactions. For more information about native ODBC or ADO support for Nested Transactions, please see the article mentioned above. The SAVEPOINT keyword basically sets a bookmark for uncommitted statements in an Oracle session. You can rollback these statements by using the TO option with the ROLLBACK statement. This all has to be done through Execute statements (such as in the form of <connection>.Execute) because the ODBC parser cannot parse the SAVEPOINT keyword properly. The following code shows how this all works: This code will commit the first two INSERT statements and rollback the second two. You will notice that the whole set of statements is surrounded with a CONNECTION level BeginTrans and CommitTrans. This is necessary so that, at the ODBC API level, the SQLSetConnectOption SQL_AUTOCOMMIT is set to SQL_AUTOCOMMIT_OFF. After you have finished your transaction it is a good idea to re-set SQL_AUTOCOMMIT to SQL_AUTOCOMMIT_ON (the default) by executing either a CommitTrans or a RollbackTrans. Because you have either committed or rolled backed your transactions with your Execute statements, it doesn't matter whether you call CommitTrans or RollbackTrans; either way, they have nothing to commit or rollback. You are just calling these functions to reset SQL_AUTOCOMMIT to SQL_AUTOCOMMIT_ON, which they both do. REFERENCES
For information on how to acquire the Microsoft Data Access Components
(MDAC) stack (which includes the Microsoft ODBC for Oracle driver), please
see the following Microsoft Knowledge Base article:
175018
For more information about nested transactions with ODBC and see the
following Microsoft Knowledge Base article:
(http://support.microsoft.com/kb/175018/EN-US/
)
How To Acquire and Install the Microsoft Oracle ODBC Driver
177138
For information on using ADO with Oracle, please see the following
Microsoft Knowledge Base article:
(http://support.microsoft.com/kb/177138/EN-US/
)
INFO: Nested Transactions Not Available in ODBC/OLE DB/ADO
176936
(http://support.microsoft.com/kb/176936/EN-US/
)
INFO: Visual Basic 5.0 Accessing an Oracle Database Using ADO
PropertiesArticle ID: 187289 - Last Review: July 1, 2004 - Revision: 1.2 APPLIES TO
|


Back to the top








