Savepoint
interface Savepoint
java.sql.Savepoint |
The representation of a savepoint, which is a point within the current transaction that can be referenced from the Connection.rollback
method. When a transaction is rolled back to a savepoint all changes made after that savepoint are undone.
Savepoints can be either named or unnamed. Unnamed savepoints are identified by an ID generated by the underlying data source.
Summary
Public methods | |
---|---|
abstract Int |
Retrieves the generated ID for the savepoint that this |
abstract String! |
Retrieves the name of the savepoint that this |
Public methods
getSavepointId
abstract fun getSavepointId(): Int
Retrieves the generated ID for the savepoint that this Savepoint
object represents.
Return | |
---|---|
Int |
the numeric ID of this savepoint |
Exceptions | |
---|---|
java.sql.SQLException |
if this is a named savepoint |
getSavepointName
abstract fun getSavepointName(): String!
Retrieves the name of the savepoint that this Savepoint
object represents.
Return | |
---|---|
String! |
the name of this savepoint |
Exceptions | |
---|---|
java.sql.SQLException |
if this is an un-named savepoint |