InterviewSolution
Saved Bookmarks
| 1. |
What is Savepoint in JDBC? |
|
Answer» It is the point to which the TRANSACTION gets ROLLED back without affecting the preceding work. The method which is used for setting a SAVEPOINT object WITHIN the CURRENT transaction is Connection.setSavepoint(). |
|