Retrieve the transaction programming model that the collaboration object uses for any connection it obtains.
boolean implicitDBTransactionBracketing()
None.
A boolean value to indicate the transaction programming model to be used in all database connections.
The implicitDBTransactionBracketing() method returns a boolean value indicates which transaction programming model the collaboration object assumes is used by all connections that it obtains, as follows:
This method is useful before obtaining a connection to see whether the current transaction programming model is appropriate for that connection.
The following example ensures that collaboration object uses explicit transaction bracketing for the database associated with the conn connection:
if (implicitDBTransactionBracketing()) CwDBConnection conn = getDBConnection("ConnPool", false);