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 SQLExceptionexecuteUpdate
public int executeUpdate() throws SQLExceptionsetNull
public void setNull(int parameterIndex, int sqlType) throws SQLExceptionsetBoolean
public void setBoolean(int parameterIndex, boolean x) throws SQLExceptionsetByte
public void setByte(int parameterIndex, byte x) throws SQLExceptionsetShort
public void setShort(int parameterIndex, short x) throws SQLExceptionsetInt
public void setInt(int parameterIndex, int x) throws SQLExceptionsetLong
public void setLong(int parameterIndex, long x) throws SQLExceptionsetFloat
public void setFloat(int parameterIndex, float x) throws SQLExceptionsetDouble
public void setDouble(int parameterIndex, double x) throws SQLExceptionsetBigDecimal
public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLExceptionsetString
public void setString(int parameterIndex, String x) throws SQLExceptionsetBytes
public void setBytes(int parameterIndex, byte x[]) throws SQLExceptionsetDate
public void setDate(int parameterIndex, Date x) throws SQLExceptionsetTime
public void setTime(int parameterIndex, Time x) throws SQLExceptionsetTimestamp
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLExceptionsetAsciiStream
public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLExceptionsetUnicodeStream
public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLExceptionsetBinaryStream
public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLExceptionclearParameters
public void clearParameters() throws SQLExceptionsetObject
public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLExceptionsetObject
public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLExceptionsetObject
public void setObject(int parameterIndex, Object x) throws SQLExceptionexecute
public boolean execute() throws SQLExceptionexecuteQuery
public ResultSet executeQuery(String sql) throws SQLExceptionexecuteUpdate
public int executeUpdate(String sql) throws SQLExceptionclose
public void close() throws SQLExceptiongetMaxFieldSize
public int getMaxFieldSize() throws SQLExceptionsetMaxFieldSize
public void setMaxFieldSize(int max) throws SQLExceptiongetMaxRows
public int getMaxRows() throws SQLExceptionsetMaxRows
public void setMaxRows(int max) throws SQLExceptionsetEscapeProcessing
public void setEscapeProcessing(boolean enable) throws SQLExceptiongetQueryTimeout
public int getQueryTimeout() throws SQLExceptionsetQueryTimeout
public void setQueryTimeout(int seconds) throws SQLExceptioncancel
public void cancel() throws SQLExceptiongetWarnings
public SQLWarning getWarnings() throws SQLExceptionclearWarnings
public void clearWarnings() throws SQLExceptionsetCursorName
public void setCursorName(String name) throws SQLExceptionexecute
public boolean execute(String sql) throws SQLExceptiongetResultSet
public ResultSet getResultSet() throws SQLExceptiongetUpdateCount
public int getUpdateCount() throws SQLExceptiongetMoreResults
public boolean getMoreResults() throws SQLExceptionsetFetchDirection
public void setFetchDirection(int direction) throws SQLException
public int getFetchDirection() throws SQLExceptionsetFetchSize
public void setFetchSize(int rows) throws SQLExceptiongetFetchSize
public int getFetchSize() throws SQLExceptiongetResultSetConcurrency
public int getResultSetConcurrency() throws SQLExceptiongetResultSetType
public int getResultSetType() throws SQLExceptionaddBatch
public void addBatch(String sql) throws SQLExceptionclearBatch
public void clearBatch() throws SQLExceptionexecuteBatch
public int[] executeBatch() throws SQLExceptiongetConnection
public Connection getConnection() throws SQLExceptionaddStatementEventListener
public void addStatementEventListener(SPStatementEventListener listener)
public void removeStatementEventListener(SPStatementEventListener listener)getUnderlyingStatement
public PreparedStatement getUnderlyingStatement()
All Packages Class Hierarchy This Package Previous Next Index