Changed Methods |
void addBatch(String )
|
Documentation changed from old to new. |
Adds an SQL command to the current batch of commmands for this Statement object. |
void clearBatch()
|
Documentation changed from old to new. |
Makes the set of commands in the current batch empty. |
void clearWarnings()
|
Documentation changed from old to new. |
Clears all the warnings reported on this Statement object. |
void close()
|
Documentation changed from old to new. |
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed. |
boolean execute(String )
|
Documentation changed from old to new. |
Executes an SQL statement that may return multiple results. |
int[] executeBatch()
|
Documentation changed from old to new. |
Submits a batch of commands to the database for execution and if all commands execute successfully returns an array of update counts. |
ResultSet executeQuery(String )
|
Documentation changed from old to new. |
Executes an SQL statement that returns a single ResultSet object. |
int executeUpdate(String )
|
Documentation changed from old to new. |
Executes an SQL INSERT UPDATE or DELETE statement. |
Connection getConnection()
|
Documentation changed from old to new. |
Returns the Connection object that produced this Statement object. |
int getFetchDirection()
|
Documentation changed from old to new. |
Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object. |
int getFetchSize()
|
Documentation changed from old to new. |
Retrieves the number of result set rows that is the default fetch size for result sets generated from this Statement object. |
int getMaxFieldSize()
|
Documentation changed from old to new. |
Returns the maximum number of bytes allowed for any column value. |
int getMaxRows()
|
Documentation changed from old to new. |
Retrieves the maximum number of rows that a ResultSet object can contain. |
boolean getMoreResults()
|
Documentation changed from old to new. |
Moves to a Statement object's next result. |
int getQueryTimeout()
|
Documentation changed from old to new. |
Retrieves the number of seconds the driver will wait for a Statement object to execute. |
ResultSet getResultSet()
|
Documentation changed from old to new. |
Returns the current result as a ResultSet object. |
int getResultSetConcurrency()
|
Documentation changed from old to new. |
Retrieves the result set concurrency for ResultSet objects generated by this Statement object. |
int getResultSetType()
|
Documentation changed from old to new. |
Retrieves the result set type for ResultSet objects generated by this Statement object. |
int getUpdateCount()
|
Documentation changed from old to new. |
Returns the current result as an update count; if the result is a ResultSet object or there are no more results -1 is returned. |
SQLWarning getWarnings()
|
Documentation changed from old to new. |
Retrieves the first warning reported by calls on this Statement object. |
void setCursorName(String )
|
Documentation changed from old to new. |
Defines the SQL cursor name that will be used by subsequent Statement object execute methods. |
void setEscapeProcessing(boolean )
|
Documentation changed from old to new. |
Sets escape processing on or off. |
void setFetchDirection(int )
|
Documentation changed from old to new. |
Gives the driver a hint as to the direction in which the rows in a result set will be processed. |
void setFetchSize(int )
|
Documentation changed from old to new. |
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed. |
void setMaxFieldSize(int )
|
Documentation changed from old to new. |
Sets the limit for the maximum number of bytes in a column to the given number of bytes. |
void setMaxRows(int )
|
Documentation changed from old to new. |
Sets the limit for the maximum number of rows that any ResultSet object can contain to the given number. |
void setQueryTimeout(int )
|
Documentation changed from old to new. |
Sets the number of seconds the driver will wait for a Statement object to execute to the given number of seconds. |