org.seasar.extension.jdbc.impl
クラス CallableStatementWrapper

java.lang.Object
  拡張org.seasar.extension.jdbc.impl.CallableStatementWrapper
すべての実装インタフェース:
CallableStatement, PreparedStatement, Statement
直系の既知のサブクラス:
BooleanToIntCallableStatement

public class CallableStatementWrapper
extends Object
implements CallableStatement

作成者:
higa

フィールドの概要
 
インタフェース java.sql.Statement から継承したフィールド
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO
 
コンストラクタの概要
CallableStatementWrapper(CallableStatement original)
           
 
メソッドの概要
 void addBatch()
           
 void addBatch(String sql)
           
 void cancel()
           
 void clearBatch()
           
 void clearParameters()
           
 void clearWarnings()
           
 void close()
           
 boolean execute()
           
 boolean execute(String sql)
           
 boolean execute(String sql, int autoGeneratedKeys)
           
 boolean execute(String sql, int[] columnIndexes)
           
 boolean execute(String sql, String[] columnNames)
           
 int[] executeBatch()
           
 ResultSet executeQuery()
           
 ResultSet executeQuery(String sql)
           
 int executeUpdate()
           
 int executeUpdate(String sql)
           
 int executeUpdate(String sql, int autoGeneratedKeys)
           
 int executeUpdate(String sql, int[] columnIndexes)
           
 int executeUpdate(String sql, String[] columnNames)
           
 Array getArray(int i)
           
 Array getArray(String parameterName)
           
 BigDecimal getBigDecimal(int parameterIndex)
           
 BigDecimal getBigDecimal(int parameterIndex, int scale)
          推奨されていません。  
 BigDecimal getBigDecimal(String parameterName)
           
 Blob getBlob(int i)
           
 Blob getBlob(String parameterName)
           
 boolean getBoolean(int parameterIndex)
           
 boolean getBoolean(String parameterName)
           
 byte getByte(int parameterIndex)
           
 byte getByte(String parameterName)
           
 byte[] getBytes(int parameterIndex)
           
 byte[] getBytes(String parameterName)
           
 Clob getClob(int i)
           
 Clob getClob(String parameterName)
           
 Connection getConnection()
           
 Date getDate(int parameterIndex)
           
 Date getDate(int parameterIndex, Calendar cal)
           
 Date getDate(String parameterName)
           
 Date getDate(String parameterName, Calendar cal)
           
 double getDouble(int parameterIndex)
           
 double getDouble(String parameterName)
           
 int getFetchDirection()
           
 int getFetchSize()
           
 float getFloat(int parameterIndex)
           
 float getFloat(String parameterName)
           
 ResultSet getGeneratedKeys()
           
 int getInt(int parameterIndex)
           
 int getInt(String parameterName)
           
 long getLong(int parameterIndex)
           
 long getLong(String parameterName)
           
 int getMaxFieldSize()
           
 int getMaxRows()
           
 ResultSetMetaData getMetaData()
           
 boolean getMoreResults()
           
 boolean getMoreResults(int current)
           
 Object getObject(int parameterIndex)
           
 Object getObject(int i, Map map)
           
 Object getObject(String parameterName)
           
 Object getObject(String parameterName, Map map)
           
 ParameterMetaData getParameterMetaData()
           
 int getQueryTimeout()
           
 Ref getRef(int i)
           
 Ref getRef(String parameterName)
           
 ResultSet getResultSet()
           
 int getResultSetConcurrency()
           
 int getResultSetHoldability()
           
 int getResultSetType()
           
 short getShort(int parameterIndex)
           
 short getShort(String parameterName)
           
 String getString(int parameterIndex)
           
 String getString(String parameterName)
           
 Time getTime(int parameterIndex)
           
 Time getTime(int parameterIndex, Calendar cal)
           
 Time getTime(String parameterName)
           
 Time getTime(String parameterName, Calendar cal)
           
 Timestamp getTimestamp(int parameterIndex)
           
 Timestamp getTimestamp(int parameterIndex, Calendar cal)
           
 Timestamp getTimestamp(String parameterName)
           
 Timestamp getTimestamp(String parameterName, Calendar cal)
           
 int getUpdateCount()
           
 URL getURL(int parameterIndex)
           
 URL getURL(String parameterName)
           
 SQLWarning getWarnings()
           
 void registerOutParameter(int parameterIndex, int sqlType)
           
 void registerOutParameter(int parameterIndex, int sqlType, int scale)
           
 void registerOutParameter(int paramIndex, int sqlType, String typeName)
           
 void registerOutParameter(String parameterName, int sqlType)
           
 void registerOutParameter(String parameterName, int sqlType, int scale)
           
 void registerOutParameter(String parameterName, int sqlType, String typeName)
           
 void setArray(int i, Array x)
           
 void setAsciiStream(int parameterIndex, InputStream x, int length)
           
 void setAsciiStream(String parameterName, InputStream x, int length)
           
 void setBigDecimal(int parameterIndex, BigDecimal x)
           
 void setBigDecimal(String parameterName, BigDecimal x)
           
 void setBinaryStream(int parameterIndex, InputStream x, int length)
           
 void setBinaryStream(String parameterName, InputStream x, int length)
           
 void setBlob(int i, Blob x)
           
 void setBoolean(int parameterIndex, boolean x)
           
 void setBoolean(String parameterName, boolean x)
           
 void setByte(int parameterIndex, byte x)
           
 void setByte(String parameterName, byte x)
           
 void setBytes(int parameterIndex, byte[] x)
           
 void setBytes(String parameterName, byte[] x)
           
 void setCharacterStream(int parameterIndex, Reader reader, int length)
           
 void setCharacterStream(String parameterName, Reader reader, int length)
           
 void setClob(int i, Clob x)
           
 void setCursorName(String name)
           
 void setDate(int parameterIndex, Date x)
           
 void setDate(int parameterIndex, Date x, Calendar cal)
           
 void setDate(String parameterName, Date x)
           
 void setDate(String parameterName, Date x, Calendar cal)
           
 void setDouble(int parameterIndex, double x)
           
 void setDouble(String parameterName, double x)
           
 void setEscapeProcessing(boolean enable)
           
 void setFetchDirection(int direction)
           
 void setFetchSize(int rows)
           
 void setFloat(int parameterIndex, float x)
           
 void setFloat(String parameterName, float x)
           
 void setInt(int parameterIndex, int x)
           
 void setInt(String parameterName, int x)
           
 void setLong(int parameterIndex, long x)
           
 void setLong(String parameterName, long x)
           
 void setMaxFieldSize(int max)
           
 void setMaxRows(int max)
           
 void setNull(int parameterIndex, int sqlType)
           
 void setNull(int paramIndex, int sqlType, String typeName)
           
 void setNull(String parameterName, int sqlType)
           
 void setNull(String parameterName, int sqlType, String typeName)
           
 void setObject(int parameterIndex, Object x)
           
 void setObject(int parameterIndex, Object x, int targetSqlType)
           
 void setObject(int parameterIndex, Object x, int targetSqlType, int scale)
           
 void setObject(String parameterName, Object x)
           
 void setObject(String parameterName, Object x, int targetSqlType)
           
 void setObject(String parameterName, Object x, int targetSqlType, int scale)
           
 void setQueryTimeout(int seconds)
           
 void setRef(int i, Ref x)
           
 void setShort(int parameterIndex, short x)
           
 void setShort(String parameterName, short x)
           
 void setString(int parameterIndex, String x)
           
 void setString(String parameterName, String x)
           
 void setTime(int parameterIndex, Time x)
           
 void setTime(int parameterIndex, Time x, Calendar cal)
           
 void setTime(String parameterName, Time x)
           
 void setTime(String parameterName, Time x, Calendar cal)
           
 void setTimestamp(int parameterIndex, Timestamp x)
           
 void setTimestamp(int parameterIndex, Timestamp x, Calendar cal)
           
 void setTimestamp(String parameterName, Timestamp x)
           
 void setTimestamp(String parameterName, Timestamp x, Calendar cal)
           
 void setUnicodeStream(int parameterIndex, InputStream x, int length)
          推奨されていません。  
 void setURL(int parameterIndex, URL x)
           
 void setURL(String parameterName, URL val)
           
 boolean wasNull()
           
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

CallableStatementWrapper

public CallableStatementWrapper(CallableStatement original)
メソッドの詳細

wasNull

public boolean wasNull()
                throws SQLException
定義:
インタフェース CallableStatement 内の wasNull
例外:
SQLException
関連項目:
CallableStatement.wasNull()

getByte

public byte getByte(int parameterIndex)
             throws SQLException
定義:
インタフェース CallableStatement 内の getByte
例外:
SQLException
関連項目:
CallableStatement.getByte(int)

getDouble

public double getDouble(int parameterIndex)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getDouble
例外:
SQLException
関連項目:
CallableStatement.getDouble(int)

getFloat

public float getFloat(int parameterIndex)
               throws SQLException
定義:
インタフェース CallableStatement 内の getFloat
例外:
SQLException
関連項目:
CallableStatement.getFloat(int)

getInt

public int getInt(int parameterIndex)
           throws SQLException
定義:
インタフェース CallableStatement 内の getInt
例外:
SQLException
関連項目:
CallableStatement.getInt(int)

getLong

public long getLong(int parameterIndex)
             throws SQLException
定義:
インタフェース CallableStatement 内の getLong
例外:
SQLException
関連項目:
CallableStatement.getLong(int)

getShort

public short getShort(int parameterIndex)
               throws SQLException
定義:
インタフェース CallableStatement 内の getShort
例外:
SQLException
関連項目:
CallableStatement.getShort(int)

getBoolean

public boolean getBoolean(int parameterIndex)
                   throws SQLException
定義:
インタフェース CallableStatement 内の getBoolean
例外:
SQLException
関連項目:
CallableStatement.getBoolean(int)

getBytes

public byte[] getBytes(int parameterIndex)
                throws SQLException
定義:
インタフェース CallableStatement 内の getBytes
例外:
SQLException
関連項目:
CallableStatement.getBytes(int)

registerOutParameter

public void registerOutParameter(int parameterIndex,
                                 int sqlType)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(int, int)

registerOutParameter

public void registerOutParameter(int parameterIndex,
                                 int sqlType,
                                 int scale)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(int, int, int)

getObject

public Object getObject(int parameterIndex)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getObject
例外:
SQLException
関連項目:
CallableStatement.getObject(int)

getString

public String getString(int parameterIndex)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getString
例外:
SQLException
関連項目:
CallableStatement.getString(int)

registerOutParameter

public void registerOutParameter(int paramIndex,
                                 int sqlType,
                                 String typeName)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(int, int, java.lang.String)

getByte

public byte getByte(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getByte
例外:
SQLException
関連項目:
CallableStatement.getByte(java.lang.String)

getDouble

public double getDouble(String parameterName)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getDouble
例外:
SQLException
関連項目:
CallableStatement.getDouble(java.lang.String)

getFloat

public float getFloat(String parameterName)
               throws SQLException
定義:
インタフェース CallableStatement 内の getFloat
例外:
SQLException
関連項目:
CallableStatement.getFloat(java.lang.String)

getInt

public int getInt(String parameterName)
           throws SQLException
定義:
インタフェース CallableStatement 内の getInt
例外:
SQLException
関連項目:
CallableStatement.getInt(java.lang.String)

getLong

public long getLong(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getLong
例外:
SQLException
関連項目:
CallableStatement.getLong(java.lang.String)

getShort

public short getShort(String parameterName)
               throws SQLException
定義:
インタフェース CallableStatement 内の getShort
例外:
SQLException
関連項目:
CallableStatement.getShort(java.lang.String)

getBoolean

public boolean getBoolean(String parameterName)
                   throws SQLException
定義:
インタフェース CallableStatement 内の getBoolean
例外:
SQLException
関連項目:
CallableStatement.getBoolean(java.lang.String)

getBytes

public byte[] getBytes(String parameterName)
                throws SQLException
定義:
インタフェース CallableStatement 内の getBytes
例外:
SQLException
関連項目:
CallableStatement.getBytes(java.lang.String)

setByte

public void setByte(String parameterName,
                    byte x)
             throws SQLException
定義:
インタフェース CallableStatement 内の setByte
例外:
SQLException
関連項目:
CallableStatement.setByte(java.lang.String, byte)

setDouble

public void setDouble(String parameterName,
                      double x)
               throws SQLException
定義:
インタフェース CallableStatement 内の setDouble
例外:
SQLException
関連項目:
CallableStatement.setDouble(java.lang.String, double)

setFloat

public void setFloat(String parameterName,
                     float x)
              throws SQLException
定義:
インタフェース CallableStatement 内の setFloat
例外:
SQLException
関連項目:
CallableStatement.setFloat(java.lang.String, float)

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(java.lang.String, int)

setInt

public void setInt(String parameterName,
                   int x)
            throws SQLException
定義:
インタフェース CallableStatement 内の setInt
例外:
SQLException
関連項目:
CallableStatement.setInt(java.lang.String, int)

setNull

public void setNull(String parameterName,
                    int sqlType)
             throws SQLException
定義:
インタフェース CallableStatement 内の setNull
例外:
SQLException
関連項目:
CallableStatement.setNull(java.lang.String, int)

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType,
                                 int scale)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(java.lang.String, int, int)

setLong

public void setLong(String parameterName,
                    long x)
             throws SQLException
定義:
インタフェース CallableStatement 内の setLong
例外:
SQLException
関連項目:
CallableStatement.setLong(java.lang.String, long)

setShort

public void setShort(String parameterName,
                     short x)
              throws SQLException
定義:
インタフェース CallableStatement 内の setShort
例外:
SQLException
関連項目:
CallableStatement.setShort(java.lang.String, short)

setBoolean

public void setBoolean(String parameterName,
                       boolean x)
                throws SQLException
定義:
インタフェース CallableStatement 内の setBoolean
例外:
SQLException
関連項目:
CallableStatement.setBoolean(java.lang.String, boolean)

setBytes

public void setBytes(String parameterName,
                     byte[] x)
              throws SQLException
定義:
インタフェース CallableStatement 内の setBytes
例外:
SQLException
関連項目:
CallableStatement.setBytes(java.lang.String, byte[])

getBigDecimal

public BigDecimal getBigDecimal(int parameterIndex)
                         throws SQLException
定義:
インタフェース CallableStatement 内の getBigDecimal
例外:
SQLException
関連項目:
CallableStatement.getBigDecimal(int)

getBigDecimal

public BigDecimal getBigDecimal(int parameterIndex,
                                int scale)
                         throws SQLException
推奨されていません。  

定義:
インタフェース CallableStatement 内の getBigDecimal
例外:
SQLException
関連項目:
CallableStatement.getBigDecimal(int, int)

getURL

public URL getURL(int parameterIndex)
           throws SQLException
定義:
インタフェース CallableStatement 内の getURL
例外:
SQLException
関連項目:
CallableStatement.getURL(int)

getArray

public Array getArray(int i)
               throws SQLException
定義:
インタフェース CallableStatement 内の getArray
例外:
SQLException
関連項目:
CallableStatement.getArray(int)

getBlob

public Blob getBlob(int i)
             throws SQLException
定義:
インタフェース CallableStatement 内の getBlob
例外:
SQLException
関連項目:
CallableStatement.getBlob(int)

getClob

public Clob getClob(int i)
             throws SQLException
定義:
インタフェース CallableStatement 内の getClob
例外:
SQLException
関連項目:
CallableStatement.getClob(int)

getDate

public Date getDate(int parameterIndex)
             throws SQLException
定義:
インタフェース CallableStatement 内の getDate
例外:
SQLException
関連項目:
CallableStatement.getDate(int)

getRef

public Ref getRef(int i)
           throws SQLException
定義:
インタフェース CallableStatement 内の getRef
例外:
SQLException
関連項目:
CallableStatement.getRef(int)

getTime

public Time getTime(int parameterIndex)
             throws SQLException
定義:
インタフェース CallableStatement 内の getTime
例外:
SQLException
関連項目:
CallableStatement.getTime(int)

getTimestamp

public Timestamp getTimestamp(int parameterIndex)
                       throws SQLException
定義:
インタフェース CallableStatement 内の getTimestamp
例外:
SQLException
関連項目:
CallableStatement.getTimestamp(int)

setAsciiStream

public void setAsciiStream(String parameterName,
                           InputStream x,
                           int length)
                    throws SQLException
定義:
インタフェース CallableStatement 内の setAsciiStream
例外:
SQLException
関連項目:
CallableStatement.setAsciiStream(java.lang.String, java.io.InputStream, int)

setBinaryStream

public void setBinaryStream(String parameterName,
                            InputStream x,
                            int length)
                     throws SQLException
定義:
インタフェース CallableStatement 内の setBinaryStream
例外:
SQLException
関連項目:
CallableStatement.setBinaryStream(java.lang.String, java.io.InputStream, int)

setCharacterStream

public void setCharacterStream(String parameterName,
                               Reader reader,
                               int length)
                        throws SQLException
定義:
インタフェース CallableStatement 内の setCharacterStream
例外:
SQLException
関連項目:
CallableStatement.setCharacterStream(java.lang.String, java.io.Reader, int)

getObject

public Object getObject(String parameterName)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getObject
例外:
SQLException
関連項目:
CallableStatement.getObject(java.lang.String)

setObject

public void setObject(String parameterName,
                      Object x)
               throws SQLException
定義:
インタフェース CallableStatement 内の setObject
例外:
SQLException
関連項目:
CallableStatement.setObject(java.lang.String, java.lang.Object)

setObject

public void setObject(String parameterName,
                      Object x,
                      int targetSqlType)
               throws SQLException
定義:
インタフェース CallableStatement 内の setObject
例外:
SQLException
関連項目:
CallableStatement.setObject(java.lang.String, java.lang.Object, int)

setObject

public void setObject(String parameterName,
                      Object x,
                      int targetSqlType,
                      int scale)
               throws SQLException
定義:
インタフェース CallableStatement 内の setObject
例外:
SQLException
関連項目:
CallableStatement.setObject(java.lang.String, java.lang.Object, int, int)

getObject

public Object getObject(int i,
                        Map map)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getObject
例外:
SQLException
関連項目:
CallableStatement.getObject(int, java.util.Map)

getString

public String getString(String parameterName)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getString
例外:
SQLException
関連項目:
CallableStatement.getString(java.lang.String)

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType,
                                 String typeName)
                          throws SQLException
定義:
インタフェース CallableStatement 内の registerOutParameter
例外:
SQLException
関連項目:
CallableStatement.registerOutParameter(java.lang.String, int, java.lang.String)

setNull

public void setNull(String parameterName,
                    int sqlType,
                    String typeName)
             throws SQLException
定義:
インタフェース CallableStatement 内の setNull
例外:
SQLException
関連項目:
CallableStatement.setNull(java.lang.String, int, java.lang.String)

setString

public void setString(String parameterName,
                      String x)
               throws SQLException
定義:
インタフェース CallableStatement 内の setString
例外:
SQLException
関連項目:
CallableStatement.setString(java.lang.String, java.lang.String)

getBigDecimal

public BigDecimal getBigDecimal(String parameterName)
                         throws SQLException
定義:
インタフェース CallableStatement 内の getBigDecimal
例外:
SQLException
関連項目:
CallableStatement.getBigDecimal(java.lang.String)

setBigDecimal

public void setBigDecimal(String parameterName,
                          BigDecimal x)
                   throws SQLException
定義:
インタフェース CallableStatement 内の setBigDecimal
例外:
SQLException
関連項目:
CallableStatement.setBigDecimal(java.lang.String, java.math.BigDecimal)

getURL

public URL getURL(String parameterName)
           throws SQLException
定義:
インタフェース CallableStatement 内の getURL
例外:
SQLException
関連項目:
CallableStatement.getURL(java.lang.String)

setURL

public void setURL(String parameterName,
                   URL val)
            throws SQLException
定義:
インタフェース CallableStatement 内の setURL
例外:
SQLException
関連項目:
CallableStatement.setURL(java.lang.String, java.net.URL)

getArray

public Array getArray(String parameterName)
               throws SQLException
定義:
インタフェース CallableStatement 内の getArray
例外:
SQLException
関連項目:
CallableStatement.getArray(java.lang.String)

getBlob

public Blob getBlob(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getBlob
例外:
SQLException
関連項目:
CallableStatement.getBlob(java.lang.String)

getClob

public Clob getClob(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getClob
例外:
SQLException
関連項目:
CallableStatement.getClob(java.lang.String)

getDate

public Date getDate(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getDate
例外:
SQLException
関連項目:
CallableStatement.getDate(java.lang.String)

setDate

public void setDate(String parameterName,
                    Date x)
             throws SQLException
定義:
インタフェース CallableStatement 内の setDate
例外:
SQLException
関連項目:
CallableStatement.setDate(java.lang.String, java.sql.Date)

getDate

public Date getDate(int parameterIndex,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の getDate
例外:
SQLException
関連項目:
CallableStatement.getDate(int, java.util.Calendar)

getRef

public Ref getRef(String parameterName)
           throws SQLException
定義:
インタフェース CallableStatement 内の getRef
例外:
SQLException
関連項目:
CallableStatement.getRef(java.lang.String)

getTime

public Time getTime(String parameterName)
             throws SQLException
定義:
インタフェース CallableStatement 内の getTime
例外:
SQLException
関連項目:
CallableStatement.getTime(java.lang.String)

setTime

public void setTime(String parameterName,
                    Time x)
             throws SQLException
定義:
インタフェース CallableStatement 内の setTime
例外:
SQLException
関連項目:
CallableStatement.setTime(java.lang.String, java.sql.Time)

getTime

public Time getTime(int parameterIndex,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の getTime
例外:
SQLException
関連項目:
CallableStatement.getTime(int, java.util.Calendar)

getTimestamp

public Timestamp getTimestamp(String parameterName)
                       throws SQLException
定義:
インタフェース CallableStatement 内の getTimestamp
例外:
SQLException
関連項目:
CallableStatement.getTimestamp(java.lang.String)

setTimestamp

public void setTimestamp(String parameterName,
                         Timestamp x)
                  throws SQLException
定義:
インタフェース CallableStatement 内の setTimestamp
例外:
SQLException
関連項目:
CallableStatement.setTimestamp(java.lang.String, java.sql.Timestamp)

getTimestamp

public Timestamp getTimestamp(int parameterIndex,
                              Calendar cal)
                       throws SQLException
定義:
インタフェース CallableStatement 内の getTimestamp
例外:
SQLException
関連項目:
CallableStatement.getTimestamp(int, java.util.Calendar)

getObject

public Object getObject(String parameterName,
                        Map map)
                 throws SQLException
定義:
インタフェース CallableStatement 内の getObject
例外:
SQLException
関連項目:
CallableStatement.getObject(java.lang.String, java.util.Map)

getDate

public Date getDate(String parameterName,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の getDate
例外:
SQLException
関連項目:
CallableStatement.getDate(java.lang.String, java.util.Calendar)

getTime

public Time getTime(String parameterName,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の getTime
例外:
SQLException
関連項目:
CallableStatement.getTime(java.lang.String, java.util.Calendar)

getTimestamp

public Timestamp getTimestamp(String parameterName,
                              Calendar cal)
                       throws SQLException
定義:
インタフェース CallableStatement 内の getTimestamp
例外:
SQLException
関連項目:
CallableStatement.getTimestamp(java.lang.String, java.util.Calendar)

setDate

public void setDate(String parameterName,
                    Date x,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の setDate
例外:
SQLException
関連項目:
CallableStatement.setDate(java.lang.String, java.sql.Date, java.util.Calendar)

setTime

public void setTime(String parameterName,
                    Time x,
                    Calendar cal)
             throws SQLException
定義:
インタフェース CallableStatement 内の setTime
例外:
SQLException
関連項目:
CallableStatement.setTime(java.lang.String, java.sql.Time, java.util.Calendar)

setTimestamp

public void setTimestamp(String parameterName,
                         Timestamp x,
                         Calendar cal)
                  throws SQLException
定義:
インタフェース CallableStatement 内の setTimestamp
例外:
SQLException
関連項目:
CallableStatement.setTimestamp(java.lang.String, java.sql.Timestamp, java.util.Calendar)

executeUpdate

public int executeUpdate()
                  throws SQLException
定義:
インタフェース PreparedStatement 内の executeUpdate
例外:
SQLException
関連項目:
PreparedStatement.executeUpdate()

addBatch

public void addBatch()
              throws SQLException
定義:
インタフェース PreparedStatement 内の addBatch
例外:
SQLException
関連項目:
PreparedStatement.addBatch()

clearParameters

public void clearParameters()
                     throws SQLException
定義:
インタフェース PreparedStatement 内の clearParameters
例外:
SQLException
関連項目:
PreparedStatement.clearParameters()

execute

public boolean execute()
                throws SQLException
定義:
インタフェース PreparedStatement 内の execute
例外:
SQLException
関連項目:
PreparedStatement.execute()

setByte

public void setByte(int parameterIndex,
                    byte x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setByte
例外:
SQLException
関連項目:
PreparedStatement.setByte(int, byte)

setDouble

public void setDouble(int parameterIndex,
                      double x)
               throws SQLException
定義:
インタフェース PreparedStatement 内の setDouble
例外:
SQLException
関連項目:
PreparedStatement.setDouble(int, double)

setFloat

public void setFloat(int parameterIndex,
                     float x)
              throws SQLException
定義:
インタフェース PreparedStatement 内の setFloat
例外:
SQLException
関連項目:
PreparedStatement.setFloat(int, float)

setInt

public void setInt(int parameterIndex,
                   int x)
            throws SQLException
定義:
インタフェース PreparedStatement 内の setInt
例外:
SQLException
関連項目:
PreparedStatement.setInt(int, int)

setNull

public void setNull(int parameterIndex,
                    int sqlType)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setNull
例外:
SQLException
関連項目:
PreparedStatement.setNull(int, int)

setLong

public void setLong(int parameterIndex,
                    long x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setLong
例外:
SQLException
関連項目:
PreparedStatement.setLong(int, long)

setShort

public void setShort(int parameterIndex,
                     short x)
              throws SQLException
定義:
インタフェース PreparedStatement 内の setShort
例外:
SQLException
関連項目:
PreparedStatement.setShort(int, short)

setBoolean

public void setBoolean(int parameterIndex,
                       boolean x)
                throws SQLException
定義:
インタフェース PreparedStatement 内の setBoolean
例外:
SQLException
関連項目:
PreparedStatement.setBoolean(int, boolean)

setBytes

public void setBytes(int parameterIndex,
                     byte[] x)
              throws SQLException
定義:
インタフェース PreparedStatement 内の setBytes
例外:
SQLException
関連項目:
PreparedStatement.setBytes(int, byte[])

setAsciiStream

public void setAsciiStream(int parameterIndex,
                           InputStream x,
                           int length)
                    throws SQLException
定義:
インタフェース PreparedStatement 内の setAsciiStream
例外:
SQLException
関連項目:
PreparedStatement.setAsciiStream(int, java.io.InputStream, int)

setBinaryStream

public void setBinaryStream(int parameterIndex,
                            InputStream x,
                            int length)
                     throws SQLException
定義:
インタフェース PreparedStatement 内の setBinaryStream
例外:
SQLException
関連項目:
PreparedStatement.setBinaryStream(int, java.io.InputStream, int)

setUnicodeStream

public void setUnicodeStream(int parameterIndex,
                             InputStream x,
                             int length)
                      throws SQLException
推奨されていません。  

定義:
インタフェース PreparedStatement 内の setUnicodeStream
例外:
SQLException
関連項目:
PreparedStatement.setUnicodeStream(int, java.io.InputStream, int)

setCharacterStream

public void setCharacterStream(int parameterIndex,
                               Reader reader,
                               int length)
                        throws SQLException
定義:
インタフェース PreparedStatement 内の setCharacterStream
例外:
SQLException
関連項目:
PreparedStatement.setCharacterStream(int, java.io.Reader, int)

setObject

public void setObject(int parameterIndex,
                      Object x)
               throws SQLException
定義:
インタフェース PreparedStatement 内の setObject
例外:
SQLException
関連項目:
PreparedStatement.setObject(int, java.lang.Object)

setObject

public void setObject(int parameterIndex,
                      Object x,
                      int targetSqlType)
               throws SQLException
定義:
インタフェース PreparedStatement 内の setObject
例外:
SQLException
関連項目:
PreparedStatement.setObject(int, java.lang.Object, int)

setObject

public void setObject(int parameterIndex,
                      Object x,
                      int targetSqlType,
                      int scale)
               throws SQLException
定義:
インタフェース PreparedStatement 内の setObject
例外:
SQLException
関連項目:
PreparedStatement.setObject(int, java.lang.Object, int, int)

setNull

public void setNull(int paramIndex,
                    int sqlType,
                    String typeName)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setNull
例外:
SQLException
関連項目:
PreparedStatement.setNull(int, int, java.lang.String)

setString

public void setString(int parameterIndex,
                      String x)
               throws SQLException
定義:
インタフェース PreparedStatement 内の setString
例外:
SQLException
関連項目:
PreparedStatement.setString(int, java.lang.String)

setBigDecimal

public void setBigDecimal(int parameterIndex,
                          BigDecimal x)
                   throws SQLException
定義:
インタフェース PreparedStatement 内の setBigDecimal
例外:
SQLException
関連項目:
PreparedStatement.setBigDecimal(int, java.math.BigDecimal)

setURL

public void setURL(int parameterIndex,
                   URL x)
            throws SQLException
定義:
インタフェース PreparedStatement 内の setURL
例外:
SQLException
関連項目:
PreparedStatement.setURL(int, java.net.URL)

setArray

public void setArray(int i,
                     Array x)
              throws SQLException
定義:
インタフェース PreparedStatement 内の setArray
例外:
SQLException
関連項目:
PreparedStatement.setArray(int, java.sql.Array)

setBlob

public void setBlob(int i,
                    Blob x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setBlob
例外:
SQLException
関連項目:
PreparedStatement.setBlob(int, java.sql.Blob)

setClob

public void setClob(int i,
                    Clob x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setClob
例外:
SQLException
関連項目:
PreparedStatement.setClob(int, java.sql.Clob)

setDate

public void setDate(int parameterIndex,
                    Date x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setDate
例外:
SQLException
関連項目:
PreparedStatement.setDate(int, java.sql.Date)

getParameterMetaData

public ParameterMetaData getParameterMetaData()
                                       throws SQLException
定義:
インタフェース PreparedStatement 内の getParameterMetaData
例外:
SQLException
関連項目:
PreparedStatement.getParameterMetaData()

setRef

public void setRef(int i,
                   Ref x)
            throws SQLException
定義:
インタフェース PreparedStatement 内の setRef
例外:
SQLException
関連項目:
PreparedStatement.setRef(int, java.sql.Ref)

executeQuery

public ResultSet executeQuery()
                       throws SQLException
定義:
インタフェース PreparedStatement 内の executeQuery
例外:
SQLException
関連項目:
PreparedStatement.executeQuery()

getMetaData

public ResultSetMetaData getMetaData()
                              throws SQLException
定義:
インタフェース PreparedStatement 内の getMetaData
例外:
SQLException
関連項目:
PreparedStatement.getMetaData()

setTime

public void setTime(int parameterIndex,
                    Time x)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setTime
例外:
SQLException
関連項目:
PreparedStatement.setTime(int, java.sql.Time)

setTimestamp

public void setTimestamp(int parameterIndex,
                         Timestamp x)
                  throws SQLException
定義:
インタフェース PreparedStatement 内の setTimestamp
例外:
SQLException
関連項目:
PreparedStatement.setTimestamp(int, java.sql.Timestamp)

setDate

public void setDate(int parameterIndex,
                    Date x,
                    Calendar cal)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setDate
例外:
SQLException
関連項目:
PreparedStatement.setDate(int, java.sql.Date, java.util.Calendar)

setTime

public void setTime(int parameterIndex,
                    Time x,
                    Calendar cal)
             throws SQLException
定義:
インタフェース PreparedStatement 内の setTime
例外:
SQLException
関連項目:
PreparedStatement.setTime(int, java.sql.Time, java.util.Calendar)

setTimestamp

public void setTimestamp(int parameterIndex,
                         Timestamp x,
                         Calendar cal)
                  throws SQLException
定義:
インタフェース PreparedStatement 内の setTimestamp
例外:
SQLException
関連項目:
PreparedStatement.setTimestamp(int, java.sql.Timestamp, java.util.Calendar)

getFetchDirection

public int getFetchDirection()
                      throws SQLException
定義:
インタフェース Statement 内の getFetchDirection
例外:
SQLException
関連項目:
Statement.getFetchDirection()

getFetchSize

public int getFetchSize()
                 throws SQLException
定義:
インタフェース Statement 内の getFetchSize
例外:
SQLException
関連項目:
Statement.getFetchSize()

getMaxFieldSize

public int getMaxFieldSize()
                    throws SQLException
定義:
インタフェース Statement 内の getMaxFieldSize
例外:
SQLException
関連項目:
Statement.getMaxFieldSize()

getMaxRows

public int getMaxRows()
               throws SQLException
定義:
インタフェース Statement 内の getMaxRows
例外:
SQLException
関連項目:
Statement.getMaxRows()

getQueryTimeout

public int getQueryTimeout()
                    throws SQLException
定義:
インタフェース Statement 内の getQueryTimeout
例外:
SQLException
関連項目:
Statement.getQueryTimeout()

getResultSetConcurrency

public int getResultSetConcurrency()
                            throws SQLException
定義:
インタフェース Statement 内の getResultSetConcurrency
例外:
SQLException
関連項目:
Statement.getResultSetConcurrency()

getResultSetHoldability

public int getResultSetHoldability()
                            throws SQLException
定義:
インタフェース Statement 内の getResultSetHoldability
例外:
SQLException
関連項目:
Statement.getResultSetHoldability()

getResultSetType

public int getResultSetType()
                     throws SQLException
定義:
インタフェース Statement 内の getResultSetType
例外:
SQLException
関連項目:
Statement.getResultSetType()

getUpdateCount

public int getUpdateCount()
                   throws SQLException
定義:
インタフェース Statement 内の getUpdateCount
例外:
SQLException
関連項目:
Statement.getUpdateCount()

cancel

public void cancel()
            throws SQLException
定義:
インタフェース Statement 内の cancel
例外:
SQLException
関連項目:
Statement.cancel()

clearBatch

public void clearBatch()
                throws SQLException
定義:
インタフェース Statement 内の clearBatch
例外:
SQLException
関連項目:
Statement.clearBatch()

clearWarnings

public void clearWarnings()
                   throws SQLException
定義:
インタフェース Statement 内の clearWarnings
例外:
SQLException
関連項目:
Statement.clearWarnings()

close

public void close()
           throws SQLException
定義:
インタフェース Statement 内の close
例外:
SQLException
関連項目:
Statement.close()

getMoreResults

public boolean getMoreResults()
                       throws SQLException
定義:
インタフェース Statement 内の getMoreResults
例外:
SQLException
関連項目:
Statement.getMoreResults()

executeBatch

public int[] executeBatch()
                   throws SQLException
定義:
インタフェース Statement 内の executeBatch
例外:
SQLException
関連項目:
Statement.executeBatch()

setFetchDirection

public void setFetchDirection(int direction)
                       throws SQLException
定義:
インタフェース Statement 内の setFetchDirection
例外:
SQLException
関連項目:
Statement.setFetchDirection(int)

setFetchSize

public void setFetchSize(int rows)
                  throws SQLException
定義:
インタフェース Statement 内の setFetchSize
例外:
SQLException
関連項目:
Statement.setFetchSize(int)

setMaxFieldSize

public void setMaxFieldSize(int max)
                     throws SQLException
定義:
インタフェース Statement 内の setMaxFieldSize
例外:
SQLException
関連項目:
Statement.setMaxFieldSize(int)

setMaxRows

public void setMaxRows(int max)
                throws SQLException
定義:
インタフェース Statement 内の setMaxRows
例外:
SQLException
関連項目:
Statement.setMaxRows(int)

setQueryTimeout

public void setQueryTimeout(int seconds)
                     throws SQLException
定義:
インタフェース Statement 内の setQueryTimeout
例外:
SQLException
関連項目:
Statement.setQueryTimeout(int)

getMoreResults

public boolean getMoreResults(int current)
                       throws SQLException
定義:
インタフェース Statement 内の getMoreResults
例外:
SQLException
関連項目:
Statement.getMoreResults(int)

setEscapeProcessing

public void setEscapeProcessing(boolean enable)
                         throws SQLException
定義:
インタフェース Statement 内の setEscapeProcessing
例外:
SQLException
関連項目:
Statement.setEscapeProcessing(boolean)

executeUpdate

public int executeUpdate(String sql)
                  throws SQLException
定義:
インタフェース Statement 内の executeUpdate
例外:
SQLException
関連項目:
Statement.executeUpdate(java.lang.String)

addBatch

public void addBatch(String sql)
              throws SQLException
定義:
インタフェース Statement 内の addBatch
例外:
SQLException
関連項目:
Statement.addBatch(java.lang.String)

setCursorName

public void setCursorName(String name)
                   throws SQLException
定義:
インタフェース Statement 内の setCursorName
例外:
SQLException
関連項目:
Statement.setCursorName(java.lang.String)

execute

public boolean execute(String sql)
                throws SQLException
定義:
インタフェース Statement 内の execute
例外:
SQLException
関連項目:
Statement.execute(java.lang.String)

executeUpdate

public int executeUpdate(String sql,
                         int autoGeneratedKeys)
                  throws SQLException
定義:
インタフェース Statement 内の executeUpdate
例外:
SQLException
関連項目:
Statement.executeUpdate(java.lang.String, int)

execute

public boolean execute(String sql,
                       int autoGeneratedKeys)
                throws SQLException
定義:
インタフェース Statement 内の execute
例外:
SQLException
関連項目:
Statement.execute(java.lang.String, int)

executeUpdate

public int executeUpdate(String sql,
                         int[] columnIndexes)
                  throws SQLException
定義:
インタフェース Statement 内の executeUpdate
例外:
SQLException
関連項目:
Statement.executeUpdate(java.lang.String, int[])

execute

public boolean execute(String sql,
                       int[] columnIndexes)
                throws SQLException
定義:
インタフェース Statement 内の execute
例外:
SQLException
関連項目:
Statement.execute(java.lang.String, int[])

getConnection

public Connection getConnection()
                         throws SQLException
定義:
インタフェース Statement 内の getConnection
例外:
SQLException
関連項目:
Statement.getConnection()

getGeneratedKeys

public ResultSet getGeneratedKeys()
                           throws SQLException
定義:
インタフェース Statement 内の getGeneratedKeys
例外:
SQLException
関連項目:
Statement.getGeneratedKeys()

getResultSet

public ResultSet getResultSet()
                       throws SQLException
定義:
インタフェース Statement 内の getResultSet
例外:
SQLException
関連項目:
Statement.getResultSet()

getWarnings

public SQLWarning getWarnings()
                       throws SQLException
定義:
インタフェース Statement 内の getWarnings
例外:
SQLException
関連項目:
Statement.getWarnings()

executeUpdate

public int executeUpdate(String sql,
                         String[] columnNames)
                  throws SQLException
定義:
インタフェース Statement 内の executeUpdate
例外:
SQLException
関連項目:
Statement.executeUpdate(java.lang.String, java.lang.String[])

execute

public boolean execute(String sql,
                       String[] columnNames)
                throws SQLException
定義:
インタフェース Statement 内の execute
例外:
SQLException
関連項目:
Statement.execute(java.lang.String, java.lang.String[])

executeQuery

public ResultSet executeQuery(String sql)
                       throws SQLException
定義:
インタフェース Statement 内の executeQuery
例外:
SQLException
関連項目:
Statement.executeQuery(java.lang.String)


Copyright © 2004-2007 The Seasar Foundation. All Rights Reserved.