Uses of Interface
java.sql.Savepoint
Packages that use Savepoint
Package
Description
Provides the API for accessing and processing data stored in a
 data source (usually a relational database) using the
 Java programming language.
Standard interfaces and base classes for JDBC 
RowSet
 implementations.The standard classes and interfaces that a third party vendor has to
 use in its implementation of a synchronization provider.
- 
Uses of Savepoint in java.sqlModifier and TypeMethodDescriptionConnection.setSavepoint()Creates an unnamed savepoint in the current transaction and returns the newSavepointobject that represents it.Connection.setSavepoint(String name) Creates a savepoint with the given name in the current transaction and returns the newSavepointobject that represents it.Modifier and TypeMethodDescriptionvoidConnection.releaseSavepoint(Savepoint savepoint) Removes the specifiedSavepointand subsequentSavepointobjects from the current transaction.voidUndoes all changes made after the givenSavepointobject was set.
- 
Uses of Savepoint in javax.sql.rowsetMethods in javax.sql.rowset with parameters of type SavepointModifier and TypeMethodDescriptionvoidEachCachedRowSetobject'sSyncProvidercontains aConnectionobject from the originalResultSetor JDBC properties passed to it.voidEachJdbcRowSetcontains aConnectionobject from the originalResultSetor JDBC properties passed to it.
- 
Uses of Savepoint in javax.sql.rowset.spiMethods in javax.sql.rowset.spi with parameters of type Savepoint