|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object | +--org.mmbase.module.database.MultiStatement
MultiStatement is a wrapper class for a callable Statement
obtained by a MultiConnection object.
The sole function of this class is to log the sql statement passed to it
using the MultiConnection that called it - all calls are then passed to
the Statement object passed to the constructor.
This class has been expanded with dummy code that enables it to be
easily adapted for compilation with jdk1.4 and JDBC 3.
In order to compile using this new API, comment-out the
Savepoint inner class in the MultiConnection class.
If you actually use a JDBC 3 driver, you may also want to
adapt the new JDBC 3 methods, so that they pass their call to
the driver, instead of throwing an UnsupportedOperationException.
| Method Summary | |
void |
addBatch(java.lang.String sql)
|
void |
cancel()
|
void |
clearBatch()
|
void |
clearWarnings()
|
void |
close()
|
boolean |
execute(java.lang.String sql)
|
boolean |
execute(java.lang.String sql,
int autoGeneratedKeys)
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(java.lang.String sql,
int[] columnIndexes)
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(java.lang.String sql,
java.lang.String[] columnNames)
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[] |
executeBatch()
|
java.sql.ResultSet |
executeQuery(java.lang.String sql)
|
int |
executeUpdate(java.lang.String sql)
|
int |
executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
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(java.lang.String sql,
int[] columnIndexes)
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(java.lang.String sql,
java.lang.String[] columnNames)
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. |
java.sql.Connection |
getConnection()
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
java.sql.ResultSet |
getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this Statement object. |
int |
getMaxFieldSize()
|
int |
getMaxRows()
|
boolean |
getMoreResults()
|
boolean |
getMoreResults(int current)
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 |
getQueryTimeout()
|
java.sql.ResultSet |
getResultSet()
|
int |
getResultSetConcurrency()
|
int |
getResultSetHoldability()
Retrieves the result set holdability for ResultSet objects generated by this Statement object. |
int |
getResultSetType()
|
int |
getUpdateCount()
|
java.sql.SQLWarning |
getWarnings()
|
void |
setCursorName(java.lang.String name)
|
void |
setEscapeProcessing(boolean enable)
|
void |
setFetchDirection(int dir)
|
void |
setFetchSize(int i)
|
void |
setMaxFieldSize(int max)
|
void |
setMaxRows(int max)
|
void |
setQueryTimeout(int seconds)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
public int executeUpdate(java.lang.String sql)
throws java.sql.SQLException
executeUpdate in interface java.sql.Statement
public void close()
throws java.sql.SQLException
close in interface java.sql.Statement
public int getMaxFieldSize()
throws java.sql.SQLException
getMaxFieldSize in interface java.sql.Statement
public void setMaxFieldSize(int max)
throws java.sql.SQLException
setMaxFieldSize in interface java.sql.Statement
public int getMaxRows()
throws java.sql.SQLException
getMaxRows in interface java.sql.Statement
public void setMaxRows(int max)
throws java.sql.SQLException
setMaxRows in interface java.sql.Statement
public void setEscapeProcessing(boolean enable)
throws java.sql.SQLException
setEscapeProcessing in interface java.sql.Statement
public int getQueryTimeout()
throws java.sql.SQLException
getQueryTimeout in interface java.sql.Statement
public void setQueryTimeout(int seconds)
throws java.sql.SQLException
setQueryTimeout in interface java.sql.Statement
public void cancel()
throws java.sql.SQLException
cancel in interface java.sql.Statement
public java.sql.SQLWarning getWarnings()
throws java.sql.SQLException
getWarnings in interface java.sql.Statement
public void clearWarnings()
throws java.sql.SQLException
clearWarnings in interface java.sql.Statement
public boolean execute(java.lang.String sql)
throws java.sql.SQLException
execute in interface java.sql.Statement
public java.sql.ResultSet getResultSet()
throws java.sql.SQLException
getResultSet in interface java.sql.Statement
public int getUpdateCount()
throws java.sql.SQLException
getUpdateCount in interface java.sql.Statement
public boolean getMoreResults()
throws java.sql.SQLException
getMoreResults in interface java.sql.Statement
public void setCursorName(java.lang.String name)
throws java.sql.SQLException
setCursorName in interface java.sql.Statement
public java.sql.ResultSet executeQuery(java.lang.String sql)
throws java.sql.SQLException
executeQuery in interface java.sql.Statement
public int[] executeBatch()
throws java.sql.SQLException
executeBatch in interface java.sql.Statement
public void setFetchDirection(int dir)
throws java.sql.SQLException
setFetchDirection in interface java.sql.Statement
public int getFetchDirection()
throws java.sql.SQLException
getFetchDirection in interface java.sql.Statement
public int getResultSetConcurrency()
throws java.sql.SQLException
getResultSetConcurrency in interface java.sql.Statement
public int getResultSetType()
throws java.sql.SQLException
getResultSetType in interface java.sql.Statement
public void addBatch(java.lang.String sql)
throws java.sql.SQLException
addBatch in interface java.sql.Statement
public void clearBatch()
throws java.sql.SQLException
clearBatch in interface java.sql.Statement
public java.sql.Connection getConnection()
throws java.sql.SQLException
getConnection in interface java.sql.Statement
public int getFetchSize()
throws java.sql.SQLException
getFetchSize in interface java.sql.Statement
public void setFetchSize(int i)
throws java.sql.SQLException
setFetchSize in interface java.sql.Statement
public boolean getMoreResults(int current)
throws java.sql.SQLException
current - one of CLOSE_CURRENT_RESULT, KEEP_CURRENT_RESULT, or CLOSE_ALL_RESULTS
public java.sql.ResultSet getGeneratedKeys()
throws java.sql.SQLException
public int executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
throws java.sql.SQLException
sql - must be an SQL INSERT, UPDATE or DELETE statement or an SQL statement that returns nothingautoGeneratedKeys - a flag indicating whether auto-generated keys should be made available for retrieval
public int executeUpdate(java.lang.String sql,
int[] columnIndexes)
throws java.sql.SQLException
sql - must be an SQL INSERT, UPDATE or DELETE statement or an SQL statement that returns nothingcolumnIndexes - an array of column indexes indicating the columns that should be returned from the inserted row
public int executeUpdate(java.lang.String sql,
java.lang.String[] columnNames)
throws java.sql.SQLException
sql - must be an SQL INSERT, UPDATE or DELETE statement or an SQL statement that returns nothingcolumnNames - - an array of the names of the columns that should be returned from the inserted row
public boolean execute(java.lang.String sql,
int autoGeneratedKeys)
throws java.sql.SQLException
sql - any SQL statementautoGeneratedKeys - a flag indicating whether auto-generated keys should be made available for retrieval
public boolean execute(java.lang.String sql,
int[] columnIndexes)
throws java.sql.SQLException
sql - any SQL statementcolumnIndexes - an array of column indexes indicating the columns that should be returned from the inserted row
public boolean execute(java.lang.String sql,
java.lang.String[] columnNames)
throws java.sql.SQLException
sql - any SQL statementcolumnNames - - an array of the names of the columns that should be returned from the inserted row
public int getResultSetHoldability()
throws java.sql.SQLException
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||