Added in API level 1

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 Savepoint object represents.

abstract String!

Retrieves the name of the savepoint that this Savepoint object represents.

Public methods

getSavepointId

Added in API level 1
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

Added in API level 1
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