All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.xmlmiddleware.db.SPPreparedStatement
NOTE: To compile against JDBC 2.0, uncomment the methods used by the 2.0 version of PreparedStatement and Statement.
public ResultSet executeQuery() throws SQLException
public int executeUpdate() throws SQLException
public void setNull(int parameterIndex, int sqlType) throws SQLException
public void setBoolean(int parameterIndex, boolean x) throws SQLException
public void setByte(int parameterIndex, byte x) throws SQLException
public void setShort(int parameterIndex, short x) throws SQLException
public void setInt(int parameterIndex, int x) throws SQLException
public void setLong(int parameterIndex, long x) throws SQLException
public void setFloat(int parameterIndex, float x) throws SQLException
public void setDouble(int parameterIndex, double x) throws SQLException
public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException
public void setString(int parameterIndex, String x) throws SQLException
public void setBytes(int parameterIndex, byte x[]) throws SQLException
public void setDate(int parameterIndex, Date x) throws SQLException
public void setTime(int parameterIndex, Time x) throws SQLException
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException
public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException
public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException
public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException
public void clearParameters() throws SQLException
public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException
public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException
public void setObject(int parameterIndex, Object x) throws SQLException
public boolean execute() throws SQLException
public ResultSet executeQuery(String sql) throws SQLException
public int executeUpdate(String sql) throws SQLException
public void close() throws SQLException
public int getMaxFieldSize() throws SQLException
public void setMaxFieldSize(int max) throws SQLException
public int getMaxRows() throws SQLException
public void setMaxRows(int max) throws SQLException
public void setEscapeProcessing(boolean enable) throws SQLException
public int getQueryTimeout() throws SQLException
public void setQueryTimeout(int seconds) throws SQLException
public void cancel() throws SQLException
public SQLWarning getWarnings() throws SQLException
public void clearWarnings() throws SQLException
public void setCursorName(String name) throws SQLException
public boolean execute(String sql) throws SQLException
public ResultSet getResultSet() throws SQLException
public int getUpdateCount() throws SQLException
public boolean getMoreResults() throws SQLException
public void setFetchDirection(int direction) throws SQLException
public int getFetchDirection() throws SQLException
public void setFetchSize(int rows) throws SQLException
public int getFetchSize() throws SQLException
public int getResultSetConcurrency() throws SQLException
public int getResultSetType() throws SQLException
public void addBatch(String sql) throws SQLException
public void clearBatch() throws SQLException
public int[] executeBatch() throws SQLException
public Connection getConnection() throws SQLException
public void addStatementEventListener(SPStatementEventListener listener)
public void removeStatementEventListener(SPStatementEventListener listener)
public PreparedStatement getUnderlyingStatement()
All Packages Class Hierarchy This Package Previous Next Index