Package | Description |
---|---|
oracle.jdbc |
Beginning in Oracle9i, the Oracle extensions to JDBC are captured
in the package
oracle.jdbc . |
Modifier and Type | Method | Description |
---|---|---|
OracleSavepoint |
OracleConnection.oracleSetSavepoint() |
Deprecated.
|
OracleSavepoint |
OracleConnection.oracleSetSavepoint(String name) |
Creates a savepoint with the given name in the current transaction
and returns the new
OracleSavepoint object that
represents it. |
OracleSavepoint |
OracleConnectionWrapper.oracleSetSavepoint() |
|
OracleSavepoint |
OracleConnectionWrapper.oracleSetSavepoint(String name) |
Modifier and Type | Method | Description |
---|---|---|
void |
OracleConnection.oracleReleaseSavepoint(OracleSavepoint savepoint) |
Removes the given
OracleSavepoint object from the current
transaction. |
void |
OracleConnectionWrapper.oracleReleaseSavepoint(OracleSavepoint savepoint) |
|
void |
OracleConnection.oracleRollback(OracleSavepoint savepoint) |
Undoes all changes made after the given
OracleSavepoint
object was set. |
void |
OracleConnectionWrapper.oracleRollback(OracleSavepoint savepoint) |