| Added Methods |
Statement createStatement(int, int, int)
|
Creates a Statement object that will generate ResultSet objects with the given type concurrency and holdability. |
int getHoldability()
|
Retrieves the current holdability of ResultSet objects created using this Connection object. |
CallableStatement prepareCall(String, int, int, int)
|
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency. |
PreparedStatement prepareStatement(String, int)
|
Creates a default PreparedStatement object that has the capability to retrieve auto-generated keys. |
PreparedStatement prepareStatement(String, int, int, int)
|
Creates a PreparedStatement object that will generate ResultSet objects with the given type concurrency and holdability. |
PreparedStatement prepareStatement(String, int[])
|
Creates a default PreparedStatement object capable of returning the auto-generated keys designated by the given array. |
PreparedStatement prepareStatement(String, String[])
|
Creates a default PreparedStatement object capable of returning the auto-generated keys designated by the given array. |
void releaseSavepoint(Savepoint)
|
Removes the given Savepoint object from the current transaction. |
void rollback(Savepoint)
|
Undoes all changes made after the given Savepoint object was set. |
void setHoldability(int)
|
Changes the holdability of ResultSet objects created using this Connection object to the given holdability. |
Savepoint setSavepoint()
|
Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it. |
Savepoint setSavepoint(String)
|
Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it. |