java.sql.Connection
Table 20. JDBC 3.0 Connection Methods Supported
| Returns | Signature | Implementation Notes |
| Savepoint | setSavepoint (String name) | Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it. |
| Savepoint | setSavepoint () | Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it. |
| void | releaseSavepoint (Savepoint savepoint) | Removes the given Savepoint object from the current transaction. |
| void | rollback(Savepoint savepoint) | Undoes all changes made after the given Savepoint object was set. |
Previous Page
Next Page
Table of Contents
Index