FileDocCategorySizeDatePackage
Savepoint.javaAPI DocAndroid 1.5 API1726Wed May 06 22:41:06 BST 2009java.sql

Savepoint

public interface Savepoint
A savepoint is an instant during the current transaction that can be utilized by a rollback via the {@link Connection#rollback} command. Rolling back to a particular savepoint means that all changes that occurred after that savepoint are undone.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public intgetSavepointId()
Returns the constructed ID for this savepoint.

return
the ID for this savepoint.
throws
SQLException if an error occurrs accessing the database.
since
Android 1.0

public java.lang.StringgetSavepointName()
Returns the name for this savepoint.

return
the name of this savepoint.
throws
SQLException if an error occurrs accessing the database.
since
Android 1.0