Save This Page
Home » jboss-5.0.0.CR1-src » org.jboss.resource.adapter » jdbc » [javadoc | source]
org.jboss.resource.adapter.jdbc
abstract public class: WrappedPreparedStatement [javadoc | source]
java.lang.Object
   org.jboss.resource.adapter.jdbc.JBossWrapper
      org.jboss.resource.adapter.jdbc.WrappedStatement
         org.jboss.resource.adapter.jdbc.WrappedPreparedStatement

All Implemented Interfaces:
    PreparedStatement, Statement, StatementAccess, WrappedStatement, Serializable

Direct Known Subclasses:
    WrappedCallableStatementJDK6, WrappedCallableStatement, WrappedPreparedStatementJDK6, WrappedCallableStatementJDK5, WrappedPreparedStatementJDK5

A wrapper for a prepared statement.
Constructor:
 public WrappedPreparedStatement(WrappedConnection lc,
    PreparedStatement ps) 
Method from org.jboss.resource.adapter.jdbc.WrappedPreparedStatement Summary:
addBatch,   clearParameters,   execute,   executeQuery,   executeUpdate,   getMetaData,   getParameterMetaData,   getUnderlyingStatement,   getWrappedObject,   setArray,   setAsciiStream,   setBigDecimal,   setBinaryStream,   setBlob,   setBoolean,   setByte,   setBytes,   setCharacterStream,   setClob,   setDate,   setDate,   setDouble,   setFloat,   setInt,   setLong,   setNull,   setNull,   setObject,   setObject,   setObject,   setRef,   setShort,   setString,   setTime,   setTime,   setTimestamp,   setTimestamp,   setURL,   setUnicodeStream
Methods from org.jboss.resource.adapter.jdbc.WrappedStatement:
addBatch,   cancel,   checkConfiguredQueryTimeout,   checkException,   checkState,   checkTransaction,   checkTransactionActive,   clearBatch,   clearWarnings,   close,   closeResultSets,   execute,   execute,   execute,   execute,   executeBatch,   executeQuery,   executeUpdate,   executeUpdate,   executeUpdate,   executeUpdate,   getConnection,   getFetchDirection,   getFetchSize,   getGeneratedKeys,   getMaxFieldSize,   getMaxRows,   getMoreResults,   getMoreResults,   getQueryTimeout,   getResultSet,   getResultSetConcurrency,   getResultSetHoldability,   getResultSetType,   getUnderlyingStatement,   getUpdateCount,   getWarnings,   getWrappedObject,   internalClose,   lock,   registerResultSet,   setCursorName,   setEscapeProcessing,   setFetchDirection,   setFetchSize,   setMaxFieldSize,   setMaxRows,   setQueryTimeout,   unlock,   unregisterResultSet,   wrapResultSet
Methods from org.jboss.resource.adapter.jdbc.JBossWrapper:
getWrappedObject,   isWrapperFor,   unwrap
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jboss.resource.adapter.jdbc.WrappedPreparedStatement Detail:
 public  void addBatch() throws SQLException 
 public  void clearParameters() throws SQLException 
 public boolean execute() throws SQLException 
 public ResultSet executeQuery() throws SQLException 
 public int executeUpdate() throws SQLException 
 public ResultSetMetaData getMetaData() throws SQLException 
 public ParameterMetaData getParameterMetaData() throws SQLException 
 public PreparedStatement getUnderlyingStatement() throws SQLException 
 protected PreparedStatement getWrappedObject() throws SQLException 
 public  void setArray(int parameterIndex,
    Array value) throws SQLException 
 public  void setAsciiStream(int parameterIndex,
    InputStream stream,
    int length) throws SQLException 
 public  void setBigDecimal(int parameterIndex,
    BigDecimal value) throws SQLException 
 public  void setBinaryStream(int parameterIndex,
    InputStream stream,
    int length) throws SQLException 
 public  void setBlob(int parameterIndex,
    Blob value) throws SQLException 
 public  void setBoolean(int parameterIndex,
    boolean value) throws SQLException 
 public  void setByte(int parameterIndex,
    byte value) throws SQLException 
 public  void setBytes(int parameterIndex,
    byte[] value) throws SQLException 
 public  void setCharacterStream(int parameterIndex,
    Reader reader,
    int length) throws SQLException 
 public  void setClob(int parameterIndex,
    Clob value) throws SQLException 
 public  void setDate(int parameterIndex,
    Date value) throws SQLException 
 public  void setDate(int parameterIndex,
    Date value,
    Calendar calendar) throws SQLException 
 public  void setDouble(int parameterIndex,
    double value) throws SQLException 
 public  void setFloat(int parameterIndex,
    float value) throws SQLException 
 public  void setInt(int parameterIndex,
    int value) throws SQLException 
 public  void setLong(int parameterIndex,
    long value) throws SQLException 
 public  void setNull(int parameterIndex,
    int sqlType) throws SQLException 
 public  void setNull(int parameterIndex,
    int sqlType,
    String typeName) throws SQLException 
 public  void setObject(int parameterIndex,
    Object value) throws SQLException 
 public  void setObject(int parameterIndex,
    Object value,
    int sqlType) throws SQLException 
 public  void setObject(int parameterIndex,
    Object value,
    int sqlType,
    int scale) throws SQLException 
 public  void setRef(int parameterIndex,
    Ref value) throws SQLException 
 public  void setShort(int parameterIndex,
    short value) throws SQLException 
 public  void setString(int parameterIndex,
    String value) throws SQLException 
 public  void setTime(int parameterIndex,
    Time value) throws SQLException 
 public  void setTime(int parameterIndex,
    Time value,
    Calendar calendar) throws SQLException 
 public  void setTimestamp(int parameterIndex,
    Timestamp value) throws SQLException 
 public  void setTimestamp(int parameterIndex,
    Timestamp value,
    Calendar calendar) throws SQLException 
 public  void setURL(int parameterIndex,
    URL value) throws SQLException 
 public  void setUnicodeStream(int parameterIndex,
    InputStream stream,
    int length) throws SQLException