org.seasar.framework.mock.sql
クラス MockResultSet

java.lang.Object
  拡張org.seasar.framework.mock.sql.MockResultSet
すべての実装インタフェース:
ResultSet

public class MockResultSet
extends Object
implements ResultSet

ResultSet用のモッククラスです。

作成者:
higa

フィールドの概要
 
インタフェース 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
 
コンストラクタの概要
MockResultSet()
          MockResultSetを作成します。
MockResultSet(MockResultSetMetaData metaData)
          MockResultSetを作成します。
MockResultSet(MockResultSetMetaData metaData, int type, int concurrency)
          MockResultSetを作成します。
 
メソッドの概要
 boolean absolute(int row)
           
 void addRowData(ArrayMap rowData)
          行データを追加します。
 void afterLast()
           
protected  void assertCursor()
          カーソルが使えることを表明します。
protected  void assertUpdatable()
          更新可能であることを表明します。
 void beforeFirst()
           
 void cancelRowUpdates()
           
 void clearWarnings()
           
 void close()
           
 void deleteRow()
           
 int findColumn(String columnName)
           
 boolean first()
           
 Array getArray(int columnIndex)
           
 Array getArray(String columnName)
           
 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 columnIndex)
           
 Blob getBlob(String columnName)
           
 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 columnIndex)
           
 Clob getClob(String columnName)
           
 Object getColumnData(int index)
           特定のカラムのデータを返します。
 Object getColumnData(String columnName)
           特定のカラムのデータを返します。
 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()
           
 MockResultSetMetaData getMockMetaData()
          ResultSetMetaData用のモックを返します。
 MockStatement getMockStatement()
          ステートメント用のモックを返します。
 Object getObject(int columnIndex)
           
 Object getObject(int columnIndex, Map arg1)
           
 Object getObject(String columnName)
           
 Object getObject(String columnName, Map arg1)
           
 Ref getRef(int columnIndex)
           
 Ref getRef(String columnName)
           
 int getRow()
           
 ArrayMap getRowData()
          現在の行データを返します。
 ArrayMap getRowData(int index)
           特定の行のデータを返します。
 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 isClosed()
          閉じているかどうかを返します。
 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 setConcurrency(int concurrency)
          結果セット同時並行性を設定します。
 void setFetchDirection(int direction)
           
 void setFetchSize(int fetchSize)
           
 void setMockMetaData(MockResultSetMetaData metaData)
          ResultSetMetaData用のモックを設定します。
 void setMockStatement(MockStatement statement)
          ステートメント用のモックを設定します。
 void setType(int type)
          結果セットタイプを設定します。
 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
 

コンストラクタの詳細

MockResultSet

public MockResultSet()
MockResultSetを作成します。


MockResultSet

public MockResultSet(MockResultSetMetaData metaData)
MockResultSetを作成します。

パラメータ:
metaData - 結果セットメタデータ

MockResultSet

public MockResultSet(MockResultSetMetaData metaData,
                     int type,
                     int concurrency)
MockResultSetを作成します。

パラメータ:
metaData - 結果セットメタデータ
type - 結果セットタイプ
concurrency - 結果セット同時並行性
メソッドの詳細

getRowData

public ArrayMap getRowData()
現在の行データを返します。

戻り値:
現在の行データ

getRowData

public ArrayMap getRowData(int index)

特定の行のデータを返します。

行番号は1からはじまります。

パラメータ:
index - 行番号
戻り値:
特定の行のデータ

getColumnData

public Object getColumnData(int index)

特定のカラムのデータを返します。

カラム番号は1からはじまります。

パラメータ:
index - カラム番号
戻り値:
特定のカラムのデータ

getColumnData

public Object getColumnData(String columnName)

特定のカラムのデータを返します。

パラメータ:
columnName - カラム名
戻り値:
特定のカラムのデータ

addRowData

public void addRowData(ArrayMap rowData)
行データを追加します。

パラメータ:
rowData - 行データ

absolute

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

assertCursor

protected void assertCursor()
                     throws SQLException
カーソルが使えることを表明します。

例外:
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

assertUpdatable

protected void assertUpdatable()
                        throws SQLException
更新可能であることを表明します。

例外:
SQLException - 更新可能でない場合。

clearWarnings

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

close

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

isClosed

public boolean isClosed()
閉じているかどうかを返します。

戻り値:
閉じているかどうか

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 columnIndex)
               throws SQLException
定義:
インタフェース ResultSet 内の getArray
例外:
SQLException

getArray

public Array getArray(String columnName)
               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)
                         throws SQLException
定義:
インタフェース ResultSet 内の getBigDecimal
例外:
SQLException

getBigDecimal

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

getBigDecimal

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

getBigDecimal

public BigDecimal getBigDecimal(String columnName,
                                int scale)
                         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 columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getBlob
例外:
SQLException

getBlob

public Blob getBlob(String columnName)
             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 columnIndex)
             throws SQLException
定義:
インタフェース ResultSet 内の getClob
例外:
SQLException

getClob

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

getConcurrency

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

setConcurrency

public void setConcurrency(int concurrency)
結果セット同時並行性を設定します。

パラメータ:
concurrency - 結果セット同時並行性

getCursorName

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

getDate

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

getDate

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

getDate

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

getDate

public Date getDate(String columnName,
                    Calendar cal)
             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

getMockMetaData

public MockResultSetMetaData getMockMetaData()
ResultSetMetaData用のモックを返します。

戻り値:
ResultSetMetaData用のモック

setMockMetaData

public void setMockMetaData(MockResultSetMetaData metaData)
ResultSetMetaData用のモックを設定します。

パラメータ:
metaData - ResultSetMetaData用のモック

getObject

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

getObject

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

getObject

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

getObject

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

getRef

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

getRef

public Ref getRef(String columnName)
           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

getMockStatement

public MockStatement getMockStatement()
ステートメント用のモックを返します。

戻り値:
ステートメント用のモック

setMockStatement

public void setMockStatement(MockStatement statement)
ステートメント用のモックを設定します。

パラメータ:
statement - ステートメント用のモック

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)
             throws SQLException
定義:
インタフェース ResultSet 内の getTime
例外:
SQLException

getTime

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

getTime

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

getTime

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

getTimestamp

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

getTimestamp

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

getTimestamp

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

getTimestamp

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

getType

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

setType

public void setType(int type)
結果セットタイプを設定します。

パラメータ:
type - 結果セットタイプ

getURL

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

getURL

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

getUnicodeStream

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

getUnicodeStream

public InputStream getUnicodeStream(String columnName)
                             throws SQLException
定義:
インタフェース ResultSet 内の getUnicodeStream
例外:
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 fetchSize)
                  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)
                  throws SQLException
定義:
インタフェース ResultSet 内の updateObject
例外:
SQLException

updateObject

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

updateObject

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

updateObject

public void updateObject(String columnName,
                         Object x,
                         int scale)
                  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 © 2004-2009 The Seasar Foundation. All Rights Reserved.