AI-generated Key Takeaways
-  JdbcSavepoint is a JDBC Savepointwith documentation available atjava.sql.Savepoint.
-  The getSavepointId()method returns the numeric ID of the savepoint as anInteger.
-  The getSavepointName()method returns the name of the savepoint as aString.
A JDBC Savepoint 
. For documentation of this class, see  java.sql.Savepoint 
 
.
Methods
| Method | Return type | Brief description | 
|---|---|---|
| Integer | For documentation of this method, see java.sql.Savepoint#getSavepointId(). | |
| String | For documentation of this method, see java.sql.Savepoint#getSavepointName(). | 
Detailed documentation
 get  
 
 For documentation of this method, see  java.sql.Savepoint#getSavepointId() 
 
.
Return
 Integer 
— The numeric ID of this savepoint.
 get  
 
 For documentation of this method, see  java.sql.Savepoint#getSavepointName() 
 
.
Return
 String 
— The name of this savepoint.

