woolpack.sql.adapter
クラス ResultSetAdapter

java.lang.Object
  上位を拡張 woolpack.sql.adapter.ResultSetAdapter
すべての実装されたインタフェース:
ResultSet

public class ResultSetAdapter
extends Object
implements ResultSet

委譲するだけのResultSetです。
適用しているデザインパターン:Delegation。


フィールドの概要
 
インタフェース java.sql.ResultSet から継承されたフィールド
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE
 
コンストラクタの概要
ResultSetAdapter(ResultSet parent)
           
 
メソッドの概要
 boolean absolute(int row)
           
 void afterLast()
           
 void beforeFirst()
           
 void cancelRowUpdates()
           
 void clearWarnings()
           
 void close()
           
 void deleteRow()
           
 int findColumn(String columnName)
           
 boolean first()
           
 Array getArray(int i)
           
 Array getArray(String colName)
           
 InputStream getAsciiStream(int columnIndex)
           
 InputStream getAsciiStream(String columnName)
           
 BigDecimal getBigDecimal(int columnIndex)
           
 BigDecimal getBigDecimal(int columnIndex, int scale)
           
 BigDecimal getBigDecimal(String columnName)
           
 BigDecimal getBigDecimal(String columnName, int scale)
           
 InputStream getBinaryStream(int columnIndex)
           
 InputStream getBinaryStream(String columnName)
           
 Blob getBlob(int i)
           
 Blob getBlob(String colName)
           
 boolean getBoolean(int columnIndex)
           
 boolean getBoolean(String columnName)
           
 byte getByte(int columnIndex)
           
 byte getByte(String columnName)
           
 byte[] getBytes(int columnIndex)
           
 byte[] getBytes(String columnName)
           
 Reader getCharacterStream(int columnIndex)
           
 Reader getCharacterStream(String columnName)
           
 Clob getClob(int i)
           
 Clob getClob(String colName)
           
 int getConcurrency()
           
 String getCursorName()
           
 Date getDate(int columnIndex)
           
 Date getDate(int columnIndex, Calendar cal)
           
 Date getDate(String columnName)
           
 Date getDate(String columnName, Calendar cal)
           
 double getDouble(int columnIndex)
           
 double getDouble(String columnName)
           
 int getFetchDirection()
           
 int getFetchSize()
           
 float getFloat(int columnIndex)
           
 float getFloat(String columnName)
           
 int getInt(int columnIndex)
           
 int getInt(String columnName)
           
 long getLong(int columnIndex)
           
 long getLong(String columnName)
           
 ResultSetMetaData getMetaData()
           
 Object getObject(int columnIndex)
           
 Object getObject(int i, Map<String,Class<?>> map)
           
 Object getObject(String columnName)
           
 Object getObject(String colName, Map<String,Class<?>> map)
           
 ResultSet getParent()
           
 Ref getRef(int i)
           
 Ref getRef(String colName)
           
 int getRow()
           
 short getShort(int columnIndex)
           
 short getShort(String columnName)
           
 Statement getStatement()
           
 String getString(int columnIndex)
           
 String getString(String columnName)
           
 Time getTime(int columnIndex)
           
 Time getTime(int columnIndex, Calendar cal)
           
 Time getTime(String columnName)
           
 Time getTime(String columnName, Calendar cal)
           
 Timestamp getTimestamp(int columnIndex)
           
 Timestamp getTimestamp(int columnIndex, Calendar cal)
           
 Timestamp getTimestamp(String columnName)
           
 Timestamp getTimestamp(String columnName, Calendar cal)
           
 int getType()
           
 InputStream getUnicodeStream(int columnIndex)
           
 InputStream getUnicodeStream(String columnName)
           
 URL getURL(int columnIndex)
           
 URL getURL(String columnName)
           
 SQLWarning getWarnings()
           
 void insertRow()
           
 boolean isAfterLast()
           
 boolean isBeforeFirst()
           
 boolean isFirst()
           
 boolean isLast()
           
 boolean last()
           
 void moveToCurrentRow()
           
 void moveToInsertRow()
           
 boolean next()
           
 boolean previous()
           
 void refreshRow()
           
 boolean relative(int rows)
           
 boolean rowDeleted()
           
 boolean rowInserted()
           
 boolean rowUpdated()
           
 void setFetchDirection(int direction)
           
 void setFetchSize(int rows)
           
 void setParent(ResultSet parent)
           
 void updateArray(int columnIndex, Array x)
           
 void updateArray(String columnName, Array x)
           
 void updateAsciiStream(int columnIndex, InputStream x, int length)
           
 void updateAsciiStream(String columnName, InputStream x, int length)
           
 void updateBigDecimal(int columnIndex, BigDecimal x)
           
 void updateBigDecimal(String columnName, BigDecimal x)
           
 void updateBinaryStream(int columnIndex, InputStream x, int length)
           
 void updateBinaryStream(String columnName, InputStream x, int length)
           
 void updateBlob(int columnIndex, Blob x)
           
 void updateBlob(String columnName, Blob x)
           
 void updateBoolean(int columnIndex, boolean x)
           
 void updateBoolean(String columnName, boolean x)
           
 void updateByte(int columnIndex, byte x)
           
 void updateByte(String columnName, byte x)
           
 void updateBytes(int columnIndex, byte[] x)
           
 void updateBytes(String columnName, byte[] x)
           
 void updateCharacterStream(int columnIndex, Reader x, int length)
           
 void updateCharacterStream(String columnName, Reader reader, int length)
           
 void updateClob(int columnIndex, Clob x)
           
 void updateClob(String columnName, Clob x)
           
 void updateDate(int columnIndex, Date x)
           
 void updateDate(String columnName, Date x)
           
 void updateDouble(int columnIndex, double x)
           
 void updateDouble(String columnName, double x)
           
 void updateFloat(int columnIndex, float x)
           
 void updateFloat(String columnName, float x)
           
 void updateInt(int columnIndex, int x)
           
 void updateInt(String columnName, int x)
           
 void updateLong(int columnIndex, long x)
           
 void updateLong(String columnName, long x)
           
 void updateNull(int columnIndex)
           
 void updateNull(String columnName)
           
 void updateObject(int columnIndex, Object x)
           
 void updateObject(int columnIndex, Object x, int scale)
           
 void updateObject(String columnName, Object x)
           
 void updateObject(String columnName, Object x, int scale)
           
 void updateRef(int columnIndex, Ref x)
           
 void updateRef(String columnName, Ref x)
           
 void updateRow()
           
 void updateShort(int columnIndex, short x)
           
 void updateShort(String columnName, short x)
           
 void updateString(int columnIndex, String x)
           
 void updateString(String columnName, String x)
           
 void updateTime(int columnIndex, Time x)
           
 void updateTime(String columnName, Time x)
           
 void updateTimestamp(int columnIndex, Timestamp x)
           
 void updateTimestamp(String columnName, Timestamp x)
           
 boolean wasNull()
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

ResultSetAdapter

public ResultSetAdapter(ResultSet parent)
メソッドの詳細

getParent

public ResultSet getParent()

setParent

public void setParent(ResultSet parent)

absolute

public boolean absolute(int row)
                 throws SQLException
定義:
インタフェース ResultSet 内の absolute
例外:
SQLException

afterLast

public void afterLast()
               throws SQLException
定義:
インタフェース ResultSet 内の afterLast
例外:
SQLException

beforeFirst

public void beforeFirst()
                 throws SQLException
定義:
インタフェース ResultSet 内の beforeFirst
例外:
SQLException

cancelRowUpdates

public void cancelRowUpdates()
                      throws SQLException
定義:
インタフェース ResultSet 内の cancelRowUpdates
例外:
SQLException

clearWarnings

public void clearWarnings()
                   throws SQLException
定義:
インタフェース ResultSet 内の clearWarnings
例外:
SQLException

close

public void close()
           throws SQLException
定義:
インタフェース ResultSet 内の close
例外:
SQLException

deleteRow

public void deleteRow()
               throws SQLException
定義:
インタフェース ResultSet 内の deleteRow
例外:
SQLException

findColumn

public int findColumn(String columnName)
               throws SQLException
定義:
インタフェース ResultSet 内の findColumn
例外:
SQLException

first

public boolean first()
              throws SQLException
定義:
インタフェース ResultSet 内の first
例外:
SQLException

getArray

public Array getArray(int i)
               throws SQLException
定義:
インタフェース ResultSet 内の getArray
例外:
SQLException

getArray

public Array getArray(String colName)
               throws SQLException
定義:
インタフェース ResultSet 内の getArray
例外:
SQLException

getAsciiStream

public InputStream getAsciiStream(int columnIndex)
                           throws SQLException
定義:
インタフェース ResultSet 内の getAsciiStream
例外:
SQLException

getAsciiStream

public InputStream getAsciiStream(String columnName)
                           throws SQLException
定義:
インタフェース ResultSet 内の getAsciiStream
例外:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(int columnIndex,
                                int scale)
                         throws SQLException
定義:
インタフェース ResultSet 内の getBigDecimal
例外:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(int columnIndex)
                         throws SQLException
定義:
インタフェース ResultSet 内の getBigDecimal
例外:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(String columnName,
                                int scale)
                         throws SQLException
定義:
インタフェース ResultSet 内の getBigDecimal
例外:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(String columnName)
                         throws SQLException
定義:
インタフェース ResultSet 内の getBigDecimal
例外:
SQLException

getBinaryStream

public InputStream getBinaryStream(int columnIndex)
                            throws SQLException
定義:
インタフェース ResultSet 内の getBinaryStream
例外:
SQLException

getBinaryStream

public InputStream getBinaryStream(String columnName)
                            throws SQLException
定義:
インタフェース ResultSet 内の getBinaryStream
例外:
SQLException

getBlob

public Blob getBlob(int i)
             throws SQLException
定義:
インタフェース ResultSet 内の getBlob
例外:
SQLException

getBlob

public Blob getBlob(String colName)
             throws SQLException
定義:
インタフェース ResultSet 内の getBlob
例外:
SQLException

getBoolean

public boolean getBoolean(int columnIndex)
                   throws SQLException
定義:
インタフェース ResultSet 内の getBoolean
例外:
SQLException

getBoolean

public boolean getBoolean(String columnName)
                   throws SQLException
定義:
インタフェース ResultSet 内の getBoolean
例外:
SQLException

getByte

public byte getByte(int columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getByte
例外:
SQLException

getByte

public byte getByte(String columnName)
             throws SQLException
定義:
インタフェース ResultSet 内の getByte
例外:
SQLException

getBytes

public byte[] getBytes(int columnIndex)
                throws SQLException
定義:
インタフェース ResultSet 内の getBytes
例外:
SQLException

getBytes

public byte[] getBytes(String columnName)
                throws SQLException
定義:
インタフェース ResultSet 内の getBytes
例外:
SQLException

getCharacterStream

public Reader getCharacterStream(int columnIndex)
                          throws SQLException
定義:
インタフェース ResultSet 内の getCharacterStream
例外:
SQLException

getCharacterStream

public Reader getCharacterStream(String columnName)
                          throws SQLException
定義:
インタフェース ResultSet 内の getCharacterStream
例外:
SQLException

getClob

public Clob getClob(int i)
             throws SQLException
定義:
インタフェース ResultSet 内の getClob
例外:
SQLException

getClob

public Clob getClob(String colName)
             throws SQLException
定義:
インタフェース ResultSet 内の getClob
例外:
SQLException

getConcurrency

public int getConcurrency()
                   throws SQLException
定義:
インタフェース ResultSet 内の getConcurrency
例外:
SQLException

getCursorName

public String getCursorName()
                     throws SQLException
定義:
インタフェース ResultSet 内の getCursorName
例外:
SQLException

getDate

public Date getDate(int columnIndex,
                    Calendar cal)
             throws SQLException
定義:
インタフェース ResultSet 内の getDate
例外:
SQLException

getDate

public Date getDate(int columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getDate
例外:
SQLException

getDate

public Date getDate(String columnName,
                    Calendar cal)
             throws SQLException
定義:
インタフェース ResultSet 内の getDate
例外:
SQLException

getDate

public Date getDate(String columnName)
             throws SQLException
定義:
インタフェース ResultSet 内の getDate
例外:
SQLException

getDouble

public double getDouble(int columnIndex)
                 throws SQLException
定義:
インタフェース ResultSet 内の getDouble
例外:
SQLException

getDouble

public double getDouble(String columnName)
                 throws SQLException
定義:
インタフェース ResultSet 内の getDouble
例外:
SQLException

getFetchDirection

public int getFetchDirection()
                      throws SQLException
定義:
インタフェース ResultSet 内の getFetchDirection
例外:
SQLException

getFetchSize

public int getFetchSize()
                 throws SQLException
定義:
インタフェース ResultSet 内の getFetchSize
例外:
SQLException

getFloat

public float getFloat(int columnIndex)
               throws SQLException
定義:
インタフェース ResultSet 内の getFloat
例外:
SQLException

getFloat

public float getFloat(String columnName)
               throws SQLException
定義:
インタフェース ResultSet 内の getFloat
例外:
SQLException

getInt

public int getInt(int columnIndex)
           throws SQLException
定義:
インタフェース ResultSet 内の getInt
例外:
SQLException

getInt

public int getInt(String columnName)
           throws SQLException
定義:
インタフェース ResultSet 内の getInt
例外:
SQLException

getLong

public long getLong(int columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getLong
例外:
SQLException

getLong

public long getLong(String columnName)
             throws SQLException
定義:
インタフェース ResultSet 内の getLong
例外:
SQLException

getMetaData

public ResultSetMetaData getMetaData()
                              throws SQLException
定義:
インタフェース ResultSet 内の getMetaData
例外:
SQLException

getObject

public Object getObject(int i,
                        Map<String,Class<?>> map)
                 throws SQLException
定義:
インタフェース ResultSet 内の getObject
例外:
SQLException

getObject

public Object getObject(int columnIndex)
                 throws SQLException
定義:
インタフェース ResultSet 内の getObject
例外:
SQLException

getObject

public Object getObject(String colName,
                        Map<String,Class<?>> map)
                 throws SQLException
定義:
インタフェース ResultSet 内の getObject
例外:
SQLException

getObject

public Object getObject(String columnName)
                 throws SQLException
定義:
インタフェース ResultSet 内の getObject
例外:
SQLException

getRef

public Ref getRef(int i)
           throws SQLException
定義:
インタフェース ResultSet 内の getRef
例外:
SQLException

getRef

public Ref getRef(String colName)
           throws SQLException
定義:
インタフェース ResultSet 内の getRef
例外:
SQLException

getRow

public int getRow()
           throws SQLException
定義:
インタフェース ResultSet 内の getRow
例外:
SQLException

getShort

public short getShort(int columnIndex)
               throws SQLException
定義:
インタフェース ResultSet 内の getShort
例外:
SQLException

getShort

public short getShort(String columnName)
               throws SQLException
定義:
インタフェース ResultSet 内の getShort
例外:
SQLException

getStatement

public Statement getStatement()
                       throws SQLException
定義:
インタフェース ResultSet 内の getStatement
例外:
SQLException

getString

public String getString(int columnIndex)
                 throws SQLException
定義:
インタフェース ResultSet 内の getString
例外:
SQLException

getString

public String getString(String columnName)
                 throws SQLException
定義:
インタフェース ResultSet 内の getString
例外:
SQLException

getTime

public Time getTime(int columnIndex,
                    Calendar cal)
             throws SQLException
定義:
インタフェース ResultSet 内の getTime
例外:
SQLException

getTime

public Time getTime(int columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getTime
例外:
SQLException

getTime

public Time getTime(String columnName,
                    Calendar cal)
             throws SQLException
定義:
インタフェース ResultSet 内の getTime
例外:
SQLException

getTime

public Time getTime(String columnName)
             throws SQLException
定義:
インタフェース ResultSet 内の getTime
例外:
SQLException

getTimestamp

public Timestamp getTimestamp(int columnIndex,
                              Calendar cal)
                       throws SQLException
定義:
インタフェース ResultSet 内の getTimestamp
例外:
SQLException

getTimestamp

public Timestamp getTimestamp(int columnIndex)
                       throws SQLException
定義:
インタフェース ResultSet 内の getTimestamp
例外:
SQLException

getTimestamp

public Timestamp getTimestamp(String columnName,
                              Calendar cal)
                       throws SQLException
定義:
インタフェース ResultSet 内の getTimestamp
例外:
SQLException

getTimestamp

public Timestamp getTimestamp(String columnName)
                       throws SQLException
定義:
インタフェース ResultSet 内の getTimestamp
例外:
SQLException

getType

public int getType()
            throws SQLException
定義:
インタフェース ResultSet 内の getType
例外:
SQLException

getUnicodeStream

public InputStream getUnicodeStream(int columnIndex)
                             throws SQLException
定義:
インタフェース ResultSet 内の getUnicodeStream
例外:
SQLException

getUnicodeStream

public InputStream getUnicodeStream(String columnName)
                             throws SQLException
定義:
インタフェース ResultSet 内の getUnicodeStream
例外:
SQLException

getURL

public URL getURL(int columnIndex)
           throws SQLException
定義:
インタフェース ResultSet 内の getURL
例外:
SQLException

getURL

public URL getURL(String columnName)
           throws SQLException
定義:
インタフェース ResultSet 内の getURL
例外:
SQLException

getWarnings

public SQLWarning getWarnings()
                       throws SQLException
定義:
インタフェース ResultSet 内の getWarnings
例外:
SQLException

insertRow

public void insertRow()
               throws SQLException
定義:
インタフェース ResultSet 内の insertRow
例外:
SQLException

isAfterLast

public boolean isAfterLast()
                    throws SQLException
定義:
インタフェース ResultSet 内の isAfterLast
例外:
SQLException

isBeforeFirst

public boolean isBeforeFirst()
                      throws SQLException
定義:
インタフェース ResultSet 内の isBeforeFirst
例外:
SQLException

isFirst

public boolean isFirst()
                throws SQLException
定義:
インタフェース ResultSet 内の isFirst
例外:
SQLException

isLast

public boolean isLast()
               throws SQLException
定義:
インタフェース ResultSet 内の isLast
例外:
SQLException

last

public boolean last()
             throws SQLException
定義:
インタフェース ResultSet 内の last
例外:
SQLException

moveToCurrentRow

public void moveToCurrentRow()
                      throws SQLException
定義:
インタフェース ResultSet 内の moveToCurrentRow
例外:
SQLException

moveToInsertRow

public void moveToInsertRow()
                     throws SQLException
定義:
インタフェース ResultSet 内の moveToInsertRow
例外:
SQLException

next

public boolean next()
             throws SQLException
定義:
インタフェース ResultSet 内の next
例外:
SQLException

previous

public boolean previous()
                 throws SQLException
定義:
インタフェース ResultSet 内の previous
例外:
SQLException

refreshRow

public void refreshRow()
                throws SQLException
定義:
インタフェース ResultSet 内の refreshRow
例外:
SQLException

relative

public boolean relative(int rows)
                 throws SQLException
定義:
インタフェース ResultSet 内の relative
例外:
SQLException

rowDeleted

public boolean rowDeleted()
                   throws SQLException
定義:
インタフェース ResultSet 内の rowDeleted
例外:
SQLException

rowInserted

public boolean rowInserted()
                    throws SQLException
定義:
インタフェース ResultSet 内の rowInserted
例外:
SQLException

rowUpdated

public boolean rowUpdated()
                   throws SQLException
定義:
インタフェース ResultSet 内の rowUpdated
例外:
SQLException

setFetchDirection

public void setFetchDirection(int direction)
                       throws SQLException
定義:
インタフェース ResultSet 内の setFetchDirection
例外:
SQLException

setFetchSize

public void setFetchSize(int rows)
                  throws SQLException
定義:
インタフェース ResultSet 内の setFetchSize
例外:
SQLException

updateArray

public void updateArray(int columnIndex,
                        Array x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateArray
例外:
SQLException

updateArray

public void updateArray(String columnName,
                        Array x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateArray
例外:
SQLException

updateAsciiStream

public void updateAsciiStream(int columnIndex,
                              InputStream x,
                              int length)
                       throws SQLException
定義:
インタフェース ResultSet 内の updateAsciiStream
例外:
SQLException

updateAsciiStream

public void updateAsciiStream(String columnName,
                              InputStream x,
                              int length)
                       throws SQLException
定義:
インタフェース ResultSet 内の updateAsciiStream
例外:
SQLException

updateBigDecimal

public void updateBigDecimal(int columnIndex,
                             BigDecimal x)
                      throws SQLException
定義:
インタフェース ResultSet 内の updateBigDecimal
例外:
SQLException

updateBigDecimal

public void updateBigDecimal(String columnName,
                             BigDecimal x)
                      throws SQLException
定義:
インタフェース ResultSet 内の updateBigDecimal
例外:
SQLException

updateBinaryStream

public void updateBinaryStream(int columnIndex,
                               InputStream x,
                               int length)
                        throws SQLException
定義:
インタフェース ResultSet 内の updateBinaryStream
例外:
SQLException

updateBinaryStream

public void updateBinaryStream(String columnName,
                               InputStream x,
                               int length)
                        throws SQLException
定義:
インタフェース ResultSet 内の updateBinaryStream
例外:
SQLException

updateBlob

public void updateBlob(int columnIndex,
                       Blob x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateBlob
例外:
SQLException

updateBlob

public void updateBlob(String columnName,
                       Blob x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateBlob
例外:
SQLException

updateBoolean

public void updateBoolean(int columnIndex,
                          boolean x)
                   throws SQLException
定義:
インタフェース ResultSet 内の updateBoolean
例外:
SQLException

updateBoolean

public void updateBoolean(String columnName,
                          boolean x)
                   throws SQLException
定義:
インタフェース ResultSet 内の updateBoolean
例外:
SQLException

updateByte

public void updateByte(int columnIndex,
                       byte x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateByte
例外:
SQLException

updateByte

public void updateByte(String columnName,
                       byte x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateByte
例外:
SQLException

updateBytes

public void updateBytes(int columnIndex,
                        byte[] x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateBytes
例外:
SQLException

updateBytes

public void updateBytes(String columnName,
                        byte[] x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateBytes
例外:
SQLException

updateCharacterStream

public void updateCharacterStream(int columnIndex,
                                  Reader x,
                                  int length)
                           throws SQLException
定義:
インタフェース ResultSet 内の updateCharacterStream
例外:
SQLException

updateCharacterStream

public void updateCharacterStream(String columnName,
                                  Reader reader,
                                  int length)
                           throws SQLException
定義:
インタフェース ResultSet 内の updateCharacterStream
例外:
SQLException

updateClob

public void updateClob(int columnIndex,
                       Clob x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateClob
例外:
SQLException

updateClob

public void updateClob(String columnName,
                       Clob x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateClob
例外:
SQLException

updateDate

public void updateDate(int columnIndex,
                       Date x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateDate
例外:
SQLException

updateDate

public void updateDate(String columnName,
                       Date x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateDate
例外:
SQLException

updateDouble

public void updateDouble(int columnIndex,
                         double x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateDouble
例外:
SQLException

updateDouble

public void updateDouble(String columnName,
                         double x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateDouble
例外:
SQLException

updateFloat

public void updateFloat(int columnIndex,
                        float x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateFloat
例外:
SQLException

updateFloat

public void updateFloat(String columnName,
                        float x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateFloat
例外:
SQLException

updateInt

public void updateInt(int columnIndex,
                      int x)
               throws SQLException
定義:
インタフェース ResultSet 内の updateInt
例外:
SQLException

updateInt

public void updateInt(String columnName,
                      int x)
               throws SQLException
定義:
インタフェース ResultSet 内の updateInt
例外:
SQLException

updateLong

public void updateLong(int columnIndex,
                       long x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateLong
例外:
SQLException

updateLong

public void updateLong(String columnName,
                       long x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateLong
例外:
SQLException

updateNull

public void updateNull(int columnIndex)
                throws SQLException
定義:
インタフェース ResultSet 内の updateNull
例外:
SQLException

updateNull

public void updateNull(String columnName)
                throws SQLException
定義:
インタフェース ResultSet 内の updateNull
例外:
SQLException

updateObject

public void updateObject(int columnIndex,
                         Object x,
                         int scale)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateObject
例外:
SQLException

updateObject

public void updateObject(int columnIndex,
                         Object x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateObject
例外:
SQLException

updateObject

public void updateObject(String columnName,
                         Object x,
                         int scale)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateObject
例外:
SQLException

updateObject

public void updateObject(String columnName,
                         Object x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateObject
例外:
SQLException

updateRef

public void updateRef(int columnIndex,
                      Ref x)
               throws SQLException
定義:
インタフェース ResultSet 内の updateRef
例外:
SQLException

updateRef

public void updateRef(String columnName,
                      Ref x)
               throws SQLException
定義:
インタフェース ResultSet 内の updateRef
例外:
SQLException

updateRow

public void updateRow()
               throws SQLException
定義:
インタフェース ResultSet 内の updateRow
例外:
SQLException

updateShort

public void updateShort(int columnIndex,
                        short x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateShort
例外:
SQLException

updateShort

public void updateShort(String columnName,
                        short x)
                 throws SQLException
定義:
インタフェース ResultSet 内の updateShort
例外:
SQLException

updateString

public void updateString(int columnIndex,
                         String x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateString
例外:
SQLException

updateString

public void updateString(String columnName,
                         String x)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateString
例外:
SQLException

updateTime

public void updateTime(int columnIndex,
                       Time x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateTime
例外:
SQLException

updateTime

public void updateTime(String columnName,
                       Time x)
                throws SQLException
定義:
インタフェース ResultSet 内の updateTime
例外:
SQLException

updateTimestamp

public void updateTimestamp(int columnIndex,
                            Timestamp x)
                     throws SQLException
定義:
インタフェース ResultSet 内の updateTimestamp
例外:
SQLException

updateTimestamp

public void updateTimestamp(String columnName,
                            Timestamp x)
                     throws SQLException
定義:
インタフェース ResultSet 内の updateTimestamp
例外:
SQLException

wasNull

public boolean wasNull()
                throws SQLException
定義:
インタフェース ResultSet 内の wasNull
例外:
SQLException


Copyright (C) 2006-2007 Takahiro Nakamura. All rights reserved.