org.axiondb.jdbc
public class AxionStatement extends BaseAxionStatement implements Statement
Version: $Revision: 1.34 $ $Date: 2007/11/13 19:04:01 $
Constructor Summary | |
---|---|
protected | AxionStatement(AxionConnection conn) |
protected | AxionStatement(AxionConnection conn, int resultSetType, int resultSetConcurrency) |
Method Summary | |
---|---|
void | addBatch(String sql) |
protected void | addWarning(SQLWarning newWarning)
Adds the given SQLWarning to the current chain of SQLWarnings, or sets it as the first
in the chain.
|
void | cancel() |
void | clearBatch() |
void | clearWarnings() |
boolean | execute(String sql) |
boolean | execute(String sql, int autoGeneratedKeys) Currently unsupported when autoGeneratedKeys is not Statement.NO_GENERATED_KEYS. |
boolean | execute(String sql, int[] columnIndexes) Currently unsupported. |
boolean | execute(String sql, String[] columnNames) Currently unsupported. |
protected boolean | execute(AxionCommand cmd) |
int[] | executeBatch() |
ResultSet | executeQuery(String sql) |
protected ResultSet | executeQuery(AxionCommand cmd) |
int | executeUpdate(String sql) |
int | executeUpdate(String sql, int autoGeneratedKeys) Currently unsupported when auotGeneratedKeys is not Statement.NO_GENERATED_KEYS. |
int | executeUpdate(String arg0, int[] arg1) Currently unsupported. |
int | executeUpdate(String arg0, String[] arg1) Currently unsupported. |
protected int | executeUpdate(AxionCommand cmd) |
int | getFetchDirection() |
int | getFetchSize() |
ResultSet | getGeneratedKeys() |
int | getMaxFieldSize() |
boolean | getMoreResults() |
boolean | getMoreResults(int current)
Currently unsupported when current is not Statement.CLOSE_CURRENT_RESULT or
Statement.CLOSE_ALL_RESULTS. |
int | getQueryTimeout() |
ResultSet | getResultSet() |
int | getResultSetConcurrency() |
int | getResultSetHoldability() Supported. |
int | getResultSetType() |
int | getUpdateCount() |
SQLWarning | getWarnings() |
void | setCursorName(String name) |
void | setEscapeProcessing(boolean enable) |
void | setFetchDirection(int direction) |
void | setFetchSize(int rows) |
void | setMaxFieldSize(int size) |
void | setQueryTimeout(int seconds) |
Parameters: w SQLWarning to be added to the warning chain