AI-generated Key Takeaways
-
JdbcSavepoint
is a JDBC wrapper for the standardjava.sql.Savepoint
interface, used for transaction management. -
It provides two main methods:
getSavepointId()
to retrieve the savepoint's numeric ID, andgetSavepointName()
to retrieve its name. -
Full documentation and details for these methods are available in the official Java SE 6 API documentation for
java.sql.Savepoint
.
A JDBC Savepoint
. For documentation of this class, see java.sql.Savepoint
.
Methods
Method | Return type | Brief description |
---|---|---|
get | Integer | For documentation of this method, see
java.sql.Savepoint#getSavepointId() . |
get | String | For documentation of this method, see
java.sql.Savepoint#getSavepointName() . |
Detailed documentation
getSavepointId()
For documentation of this method, see
java.sql.Savepoint#getSavepointId()
.
Return
Integer
— The numeric ID of this savepoint.
getSavepointName()
For documentation of this method, see
java.sql.Savepoint#getSavepointName()
.
Return
String
— The name of this savepoint.