All Packages This Package Previous Next
java.lang.Object | +----sqlj.runtime.profile.ref.RTStatementJDBCBase
cancel
method on the underlying prepared
statement.
clearWarnings
method on the underlying prepared
statement.
execute
method on
the underlying prepared statement.
executeQuery
method on
the underlying prepared statement.
executeUpdate
method on
the underlying prepared statement.
getMaxFieldSize
method on
the underlying prepared statement.
getMaxRows
method on
the underlying prepared statement.
getMoreResults
method on
the underlying prepared statement.
getQueryTimeout
method on
the underlying prepared statement.
getResultSet
method on
the underlying prepared statement.
getUpdateCount
method on
the underlying prepared statement.
getWarnings
method on
the underlying prepared statement.
setAsciiStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter.
setBigDecimal
method on the underlying prepared
statement.
setBinaryStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter.
setBoolean
method on the underlying prepared
statement.
setBoolean
method on the underlying statement.
setByte
method on the underlying prepared
statement.
setBytes
method on the underlying prepared
statement.
setByte
method on the underlying statement.
setDate
method on the underlying prepared
statement.
setDouble
method on the underlying prepared
statement.
setDouble
method on the underlying statement.
setFloat
method on the underlying prepared
statement.
setFloat
method on the underlying statement.
setInt
method on the underlying prepared
statement.
setInt
method on the underlying statement.
setLong
method on the underlying prepared
statement.
setLong
method on the underlying statement.
setMaxFieldSize
method on the underlying prepared
statement.
setMaxRows
method on the underlying prepared
statement.
setObject
method on the underlying prepared
statement.
setQueryTimeout
method on the underlying prepared
statement.
setShort
method on the underlying prepared
statement.
setShort
method on the underlying statement.
setString
method on the underlying prepared
statement.
setTime
method on the underlying prepared
statement.
setTimestamp
method on the underlying prepared
statement.
setUnicodeStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter.
protected PreparedStatement preparedStmt
public RTStatementJDBCBase(PreparedStatement preparedStmt)
public PreparedStatement getJDBCPreparedStatement()
public int getMaxFieldSize() throws SQLException
getMaxFieldSize
method on
the underlying prepared statement.
public void setMaxFieldSize(int max) throws SQLException
setMaxFieldSize
method on the underlying prepared
statement.
public int getMaxRows() throws SQLException
getMaxRows
method on
the underlying prepared statement.
public void setMaxRows(int max) throws SQLException
setMaxRows
method on the underlying prepared
statement.
public int getQueryTimeout() throws SQLException
getQueryTimeout
method on
the underlying prepared statement.
public void setQueryTimeout(int seconds) throws SQLException
setQueryTimeout
method on the underlying prepared
statement.
public void cancel() throws SQLException
cancel
method on the underlying prepared
statement.
public SQLWarning getWarnings() throws SQLException
getWarnings
method on
the underlying prepared statement.
public void clearWarnings() throws SQLException
clearWarnings
method on the underlying prepared
statement.
public ResultSet getResultSet() throws SQLException
getResultSet
method on
the underlying prepared statement.
public int getUpdateCount() throws SQLException
getUpdateCount
method on
the underlying prepared statement.
public boolean getMoreResults() throws SQLException
getMoreResults
method on
the underlying prepared statement.
public RTResultSet executeRTQuery() throws SQLException
executeQuery
method on
the underlying prepared statement. The result set is wrapped in an
RTResultSetJDBC before being returned.
public int executeUpdate() throws SQLException
executeUpdate
method on
the underlying prepared statement.
public void setBoolean(int parameterIndex, boolean x) throws SQLException
setBoolean
method on the underlying prepared
statement.
public void setByte(int parameterIndex, byte x) throws SQLException
setByte
method on the underlying prepared
statement.
public void setShort(int parameterIndex, short x) throws SQLException
setShort
method on the underlying prepared
statement.
public void setInt(int parameterIndex, int x) throws SQLException
setInt
method on the underlying prepared
statement.
public void setLong(int parameterIndex, long x) throws SQLException
setLong
method on the underlying prepared
statement.
public void setFloat(int parameterIndex, float x) throws SQLException
setFloat
method on the underlying prepared
statement.
public void setDouble(int parameterIndex, double x) throws SQLException
setDouble
method on the underlying prepared
statement.
public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException
setBigDecimal
method on the underlying prepared
statement.
public void setString(int parameterIndex, String x) throws SQLException
setString
method on the underlying prepared
statement.
public void setBytes(int parameterIndex, byte x[]) throws SQLException
setBytes
method on the underlying prepared
statement.
public void setDate(int parameterIndex, Date x) throws SQLException
setDate
method on the underlying prepared
statement.
public void setTime(int parameterIndex, Time x) throws SQLException
setTime
method on the underlying prepared
statement.
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException
setTimestamp
method on the underlying prepared
statement.
public void setObject(int parameterIndex, Object x) throws SQLException
setObject
method on the underlying prepared
statement.
public boolean execute() throws SQLException
execute
method on
the underlying prepared statement.
public void executeComplete() throws SQLException
If there are no open result sets on this statement, the underlying statement is closed. Otherwise, the close of the underlying statement will be delyaed until all open result sets on this statement have been closed.
public void setBooleanWrapper(int paramIndex, Boolean x) throws SQLException
setBoolean
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setByteWrapper(int paramIndex, Byte x) throws SQLException
setByte
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setShortWrapper(int paramIndex, Short x) throws SQLException
setShort
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setIntWrapper(int paramIndex, Integer x) throws SQLException
setInt
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setLongWrapper(int paramIndex, Long x) throws SQLException
setLong
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setFloatWrapper(int paramIndex, Float x) throws SQLException
setFloat
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setDoubleWrapper(int paramIndex, Double x) throws SQLException
setDouble
method on the underlying statement. If the
passed parameter value is null, calls setNull
on the
underlying statement using the default SQL type mapping for
the passed wrapper object.
public void setAsciiStreamWrapper(int paramIndex, AsciiStream x) throws SQLException
setAsciiStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter. If the passed stream is null, calls setNull
on the underlying statement using the default SQL type mapping for the
passed stream.
public void setBinaryStreamWrapper(int paramIndex, BinaryStream x) throws SQLException
setBinaryStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter. If the passed stream is null, calls setNull
on the underlying statement using the default SQL type mapping for the
passed stream.
public void setUnicodeStreamWrapper(int paramIndex, UnicodeStream x) throws SQLException
setUnicodeStream
method on the underlying
statement, passing the InputStream and length of the passed stream
parameter. If the passed stream is null, calls setNull
on the underlying statement using the default SQL type mapping for the
passed stream.
All Packages This Package Previous Next