apache
>
db
10.0 Manuals
Derby Site
About
About these manuals
About this web site
Doc Downloads
All docs: zip
All docs: tar.gz
Manuals
Getting Started
Table of Contents
Index
Reference Manual
Table of Contents
Index
Developer's Guide
Table of Contents
Index
Tuning Derby
Table of Contents
Index
Server & Admin Guide
Table of Contents
Index
Tools & Utility Guide
Table of Contents
Index
Font size:
java.sql.Connection
java.sql.Connection
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