InterviewSolution
Saved Bookmarks
| 1. |
How can I determine whether a Statement and its ResultSet will be closed on a commit or rollback? |
|
Answer» Use the DatabaseMetaData methods supportsOpenStatementsAcrossCommit() and supportsOpenStatementsAcrossRollback() to check. |
|