| Added Methods |
boolean execute(String, int)
|
Executes the given SQL statement which may return multiple results and signals the driver that any auto-generated keys should be made available for retrieval. |
boolean execute(String, int[])
|
Executes the given SQL statement which may return multiple results and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval. |
boolean execute(String, String[])
|
Executes the given SQL statement which may return multiple results and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval. |
int executeUpdate(String, int)
|
Executes the given SQL statement and signals the driver with the given flag about whether the auto-generated keys produced by this Statement object should be made available for retrieval. |
int executeUpdate(String, int[])
|
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval. |
int executeUpdate(String, String[])
|
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval. |
ResultSet getGeneratedKeys()
|
Retrieves any auto-generated keys created as a result of executing this Statement object. |
boolean getMoreResults(int)
|
Moves to this Statement object's next result deals with any current ResultSet object(s) according to the instructions specified by the given flag and returns true if the next result is a ResultSet object. |
int getResultSetHoldability()
|
Retrieves the result set holdability for ResultSet objects generated by this Statement object. |
| Added Fields |
int CLOSE_ALL_RESULTS
|
The constant indicating that all ResultSet objects that have previously been kept open should be closed when calling getMoreResults. |
int CLOSE_CURRENT_RESULT
|
The constant indicating that the current ResultSet object should be closed when calling getMoreResults. |
int EXECUTE_FAILED
|
The constant indicating that an error occured while executing a batch statement. |
int KEEP_CURRENT_RESULT
|
The constant indicating that the current ResultSet object should not be closed when calling getMoreResults. |
int NO_GENERATED_KEYS
|
The constant indicating that generated keys should not be made available for retrieval. |
int RETURN_GENERATED_KEYS
|
The constant indicating that generated keys should be made available for retrieval. |
int SUCCESS_NO_INFO
|
The constant indicating that a batch statement executed successfully but that no count of the number of rows it affected is available. |