11 lines
233 B
Java
11 lines
233 B
Java
package oracle.jdbc;
|
|
|
|
import java.sql.SQLException;
|
|
import java.sql.Savepoint;
|
|
|
|
public interface OracleSavepoint extends Savepoint {
|
|
int getSavepointId() throws SQLException;
|
|
|
|
String getSavepointName() throws SQLException;
|
|
}
|