org.sqlite.jdbc
クラス JdbcResultSet

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

public class JdbcResultSet
extends java.lang.Object
implements java.sql.ResultSet


フィールドの概要
 
インタフェース 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
 
コンストラクタの概要
JdbcResultSet(java.sql.Statement owner, Statement stmt)
           
 
メソッドの概要
 boolean absolute(int row)
           
 void afterLast()
           
 void beforeFirst()
           
 void cancelRowUpdates()
          Not supporetd yet.
 void clearWarnings()
           
 void close()
           
 void deleteRow()
          Not supporetd yet.
 int findColumn(java.lang.String columnLabel)
           
 boolean first()
           
 java.sql.Array getArray(int columnIndex)
          Not supporetd yet.
 java.sql.Array getArray(java.lang.String columnLabel)
           
 java.io.InputStream getAsciiStream(int columnIndex)
          Not supporetd yet.
 java.io.InputStream getAsciiStream(java.lang.String columnLabel)
           
 java.math.BigDecimal getBigDecimal(int columnIndex)
           
 java.math.BigDecimal getBigDecimal(int columnIndex, int scale)
           
 java.math.BigDecimal getBigDecimal(java.lang.String columnLabel)
           
 java.math.BigDecimal getBigDecimal(java.lang.String columnLabel, int arg1)
           
 java.io.InputStream getBinaryStream(int columnIndex)
          Not supporetd yet.
 java.io.InputStream getBinaryStream(java.lang.String columnLabel)
           
 JdbcBlob getBlob(int columnIndex)
           
 JdbcBlob getBlob(java.lang.String columnLabel)
           
 boolean getBoolean(int columnIndex)
           
 boolean getBoolean(java.lang.String columnLabel)
           
 byte getByte(int columnIndex)
           
 byte getByte(java.lang.String columnLabel)
           
 byte[] getBytes(int columnIndex)
           
 byte[] getBytes(java.lang.String columnLabel)
           
 java.io.Reader getCharacterStream(int columnIndex)
          Not supporetd yet.
 java.io.Reader getCharacterStream(java.lang.String columnLabel)
          Not supporetd yet.
 java.sql.Clob getClob(int columnIndex)
          Not supporetd yet.
 java.sql.Clob getClob(java.lang.String columnLabel)
           
 int getConcurrency()
          It always returns CONCUR_READ_ONLY.
 java.lang.String getCursorName()
          Not supporetd yet.
 java.sql.Date getDate(int columnIndex)
           
 java.sql.Date getDate(int columnIndex, java.util.Calendar cal)
           
 java.sql.Date getDate(java.lang.String columnLabel)
           
 java.sql.Date getDate(java.lang.String columnLabel, java.util.Calendar cal)
           
 double getDouble(int columnIndex)
           
 double getDouble(java.lang.String columnLabel)
           
 int getFetchDirection()
          It always returns FETCH_FORWARD.
 int getFetchSize()
          It always returns 0.
 float getFloat(int columnIndex)
           
 float getFloat(java.lang.String columnLabel)
           
 int getInt(int columnIndex)
           
 int getInt(java.lang.String columnLabel)
           
 long getLong(int columnIndex)
           
 long getLong(java.lang.String columnLabel)
           
 JdbcResultSetMetaData getMetaData()
           
 java.lang.Object getObject(int columnIndex)
           
 java.lang.Object getObject(int columnIndex, java.util.Map<java.lang.String,java.lang.Class<?>> map)
          Not supporetd yet.
 java.lang.Object getObject(java.lang.String columnLabel)
           
 java.lang.Object getObject(java.lang.String columnLabel, java.util.Map<java.lang.String,java.lang.Class<?>> map)
           
 java.sql.Ref getRef(int columnIndex)
          Not supporetd yet.
 java.sql.Ref getRef(java.lang.String columnLabel)
           
 int getRow()
           
 short getShort(int columnIndex)
           
 short getShort(java.lang.String columnLabel)
           
 java.sql.Statement getStatement()
           
 java.lang.String getString(int columnIndex)
           
 java.lang.String getString(java.lang.String columnLabel)
           
 java.sql.Time getTime(int columnIndex)
           
 java.sql.Time getTime(int columnIndex, java.util.Calendar cal)
           
 java.sql.Time getTime(java.lang.String columnLabel)
           
 java.sql.Time getTime(java.lang.String columnLabel, java.util.Calendar cal)
           
 java.sql.Timestamp getTimestamp(int columnIndex)
           
 java.sql.Timestamp getTimestamp(int columnIndex, java.util.Calendar cal)
           
 java.sql.Timestamp getTimestamp(java.lang.String columnLabel)
           
 java.sql.Timestamp getTimestamp(java.lang.String columnLabel, java.util.Calendar cal)
           
 int getType()
          It always returns TYPE_FORWARD_ONLY.
 java.io.InputStream getUnicodeStream(int columnIndex)
          Not supporetd yet.
 java.io.InputStream getUnicodeStream(java.lang.String columnLabel)
           
 java.net.URL getURL(int columnIndex)
           
 java.net.URL getURL(java.lang.String columnLabel)
           
 java.sql.SQLWarning getWarnings()
           
 void insertRow()
          Not supporetd yet.
 boolean isAfterLast()
           
 boolean isBeforeFirst()
           
 boolean isClosed()
           
 boolean isFirst()
           
 boolean isLast()
           
 boolean last()
           
 void moveToCurrentRow()
          Not supporetd yet.
 void moveToInsertRow()
          Not supporetd yet.
 boolean next()
           
 boolean previous()
           
 void refreshRow()
          Not supporetd yet.
 boolean relative(int rows)
           
 boolean rowDeleted()
          Not supporetd yet.
 boolean rowInserted()
          Not supporetd yet.
 boolean rowUpdated()
          Not supporetd yet.
 void setFetchDirection(int direction)
          Supported fetch direction is FETCH_FORWARD only.
 void setFetchSize(int rows)
          Not supporetd yet.
 void updateArray(int columnIndex, java.sql.Array arg1)
          Not supporetd yet.
 void updateArray(java.lang.String columnLabel, java.sql.Array arg1)
          Not supporetd yet.
 void updateAsciiStream(int columnIndex, java.io.InputStream arg1, int arg2)
          Not supporetd yet.
 void updateAsciiStream(java.lang.String columnLabel, java.io.InputStream arg1, int arg2)
          Not supporetd yet.
 void updateBigDecimal(int columnIndex, java.math.BigDecimal arg1)
          Not supporetd yet.
 void updateBigDecimal(java.lang.String columnLabel, java.math.BigDecimal arg1)
          Not supporetd yet.
 void updateBinaryStream(int columnIndex, java.io.InputStream arg1, int arg2)
          Not supporetd yet.
 void updateBinaryStream(java.lang.String columnLabel, java.io.InputStream arg1, int arg2)
          Not supporetd yet.
 void updateBlob(int columnIndex, java.sql.Blob arg1)
          Not supporetd yet.
 void updateBlob(java.lang.String columnLabel, java.sql.Blob arg1)
          Not supporetd yet.
 void updateBoolean(int columnIndex, boolean arg1)
          Not supporetd yet.
 void updateBoolean(java.lang.String columnLabel, boolean arg1)
          Not supporetd yet.
 void updateByte(int columnIndex, byte arg1)
          Not supporetd yet.
 void updateByte(java.lang.String columnLabel, byte arg1)
          Not supporetd yet.
 void updateBytes(int columnIndex, byte[] arg1)
          Not supporetd yet.
 void updateBytes(java.lang.String columnLabel, byte[] arg1)
          Not supporetd yet.
 void updateCharacterStream(int columnIndex, java.io.Reader arg1, int arg2)
          Not supporetd yet.
 void updateCharacterStream(java.lang.String columnLabel, java.io.Reader arg1, int arg2)
          Not supporetd yet.
 void updateClob(int columnIndex, java.sql.Clob arg1)
          Not supporetd yet.
 void updateClob(java.lang.String columnLabel, java.sql.Clob arg1)
          Not supporetd yet.
 void updateDate(int columnIndex, java.sql.Date arg1)
          Not supporetd yet.
 void updateDate(java.lang.String columnLabel, java.sql.Date arg1)
          Not supporetd yet.
 void updateDouble(int columnIndex, double arg1)
          Not supporetd yet.
 void updateDouble(java.lang.String columnLabel, double arg1)
          Not supporetd yet.
 void updateFloat(int columnIndex, float arg1)
          Not supporetd yet.
 void updateFloat(java.lang.String columnLabel, float arg1)
          Not supporetd yet.
 void updateInt(int columnIndex, int arg1)
          Not supporetd yet.
 void updateInt(java.lang.String columnLabel, int arg1)
          Not supporetd yet.
 void updateLong(int columnIndex, long arg1)
          Not supporetd yet.
 void updateLong(java.lang.String columnLabel, long arg1)
          Not supporetd yet.
 void updateNull(int columnIndex)
          Not supporetd yet.
 void updateNull(java.lang.String columnLabel)
          Not supporetd yet.
 void updateObject(int columnIndex, java.lang.Object arg1)
          Not supporetd yet.
 void updateObject(int columnIndex, java.lang.Object arg1, int arg2)
          Not supporetd yet.
 void updateObject(java.lang.String columnLabel, java.lang.Object arg1)
          Not supporetd yet.
 void updateObject(java.lang.String columnLabel, java.lang.Object arg1, int arg2)
          Not supporetd yet.
 void updateRef(int columnIndex, java.sql.Ref arg1)
          Not supporetd yet.
 void updateRef(java.lang.String columnLabel, java.sql.Ref arg1)
          Not supporetd yet.
 void updateRow()
          Not supporetd yet.
 void updateShort(int columnIndex, short arg1)
          Not supporetd yet.
 void updateShort(java.lang.String columnLabel, short arg1)
          Not supporetd yet.
 void updateString(int columnIndex, java.lang.String arg1)
          Not supporetd yet.
 void updateString(java.lang.String columnLabel, java.lang.String arg1)
          Not supporetd yet.
 void updateTime(int columnIndex, java.sql.Time arg1)
          Not supporetd yet.
 void updateTime(java.lang.String columnLabel, java.sql.Time arg1)
          Not supporetd yet.
 void updateTimestamp(int columnIndex, java.sql.Timestamp arg1)
          Not supporetd yet.
 void updateTimestamp(java.lang.String columnLabel, java.sql.Timestamp arg1)
          Not supporetd yet.
static void validateResultSetConcurrency(int resultSetConcurrency)
           
static void validateResultSetFetchDirection(int direction)
           
static void validateResultSetHoldability(int resultSetHoldability)
           
protected  void validateResultSetOpen()
           
static void validateResultSetType(int resultSetType)
           
 boolean wasNull()
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

JdbcResultSet

public JdbcResultSet(java.sql.Statement owner,
                     Statement stmt)
              throws java.sql.SQLException
例外:
java.sql.SQLException
メソッドの詳細

next

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

close

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

wasNull

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

getString

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

getBoolean

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

getByte

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

getShort

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

getInt

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

getLong

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

getFloat

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

getDouble

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

getBigDecimal

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

getBytes

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

getDate

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

getTime

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

getTimestamp

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

getAsciiStream

public java.io.InputStream getAsciiStream(int columnIndex)
                                   throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getAsciiStream
例外:
java.sql.SQLException

getUnicodeStream

public java.io.InputStream getUnicodeStream(int columnIndex)
                                     throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getUnicodeStream
例外:
java.sql.SQLException

getBinaryStream

public java.io.InputStream getBinaryStream(int columnIndex)
                                    throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getBinaryStream
例外:
java.sql.SQLException

getString

public java.lang.String getString(java.lang.String columnLabel)
                           throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getString
例外:
java.sql.SQLException

getBoolean

public boolean getBoolean(java.lang.String columnLabel)
                   throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBoolean
例外:
java.sql.SQLException

getByte

public byte getByte(java.lang.String columnLabel)
             throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getByte
例外:
java.sql.SQLException

getShort

public short getShort(java.lang.String columnLabel)
               throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getShort
例外:
java.sql.SQLException

getInt

public int getInt(java.lang.String columnLabel)
           throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getInt
例外:
java.sql.SQLException

getLong

public long getLong(java.lang.String columnLabel)
             throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getLong
例外:
java.sql.SQLException

getFloat

public float getFloat(java.lang.String columnLabel)
               throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getFloat
例外:
java.sql.SQLException

getDouble

public double getDouble(java.lang.String columnLabel)
                 throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getDouble
例外:
java.sql.SQLException

getBigDecimal

public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel,
                                          int arg1)
                                   throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBigDecimal
例外:
java.sql.SQLException

getBytes

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

getDate

public java.sql.Date getDate(java.lang.String columnLabel)
                      throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getDate
例外:
java.sql.SQLException

getTime

public java.sql.Time getTime(java.lang.String columnLabel)
                      throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getTime
例外:
java.sql.SQLException

getTimestamp

public java.sql.Timestamp getTimestamp(java.lang.String columnLabel)
                                throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getTimestamp
例外:
java.sql.SQLException

getAsciiStream

public java.io.InputStream getAsciiStream(java.lang.String columnLabel)
                                   throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getAsciiStream
例外:
java.sql.SQLException

getUnicodeStream

public java.io.InputStream getUnicodeStream(java.lang.String columnLabel)
                                     throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getUnicodeStream
例外:
java.sql.SQLException

getBinaryStream

public java.io.InputStream getBinaryStream(java.lang.String columnLabel)
                                    throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBinaryStream
例外:
java.sql.SQLException

getWarnings

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

clearWarnings

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

getCursorName

public java.lang.String getCursorName()
                               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getCursorName
例外:
java.sql.SQLException

getMetaData

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

getObject

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

getObject

public java.lang.Object getObject(java.lang.String columnLabel)
                           throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getObject
例外:
java.sql.SQLException

findColumn

public int findColumn(java.lang.String columnLabel)
               throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の findColumn
例外:
java.sql.SQLException

getCharacterStream

public java.io.Reader getCharacterStream(int columnIndex)
                                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getCharacterStream
例外:
java.sql.SQLException

getCharacterStream

public java.io.Reader getCharacterStream(java.lang.String columnLabel)
                                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getCharacterStream
例外:
java.sql.SQLException

getBigDecimal

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

getBigDecimal

public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel)
                                   throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBigDecimal
例外:
java.sql.SQLException

isBeforeFirst

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

isAfterLast

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

isFirst

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

isLast

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

beforeFirst

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

afterLast

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

first

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

last

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

getRow

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

absolute

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

relative

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

previous

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

setFetchDirection

public void setFetchDirection(int direction)
                       throws java.sql.SQLException
Supported fetch direction is FETCH_FORWARD only.

定義:
インタフェース java.sql.ResultSet 内の setFetchDirection
パラメータ:
direction -
例外:
java.sql.SQLException

getFetchDirection

public int getFetchDirection()
                      throws java.sql.SQLException
It always returns FETCH_FORWARD.

定義:
インタフェース java.sql.ResultSet 内の getFetchDirection
戻り値:
java.sql.ResultSet.FETCH_FORWARD
例外:
java.sql.SQLException

setFetchSize

public void setFetchSize(int rows)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の setFetchSize
例外:
java.sql.SQLException

getFetchSize

public int getFetchSize()
                 throws java.sql.SQLException
It always returns 0.

定義:
インタフェース java.sql.ResultSet 内の getFetchSize
戻り値:
0
例外:
java.sql.SQLException

getType

public int getType()
            throws java.sql.SQLException
It always returns TYPE_FORWARD_ONLY.

定義:
インタフェース java.sql.ResultSet 内の getType
戻り値:
java.sql.ResultSet.TYPE_FORWARD_ONLY
例外:
java.sql.SQLException

getConcurrency

public int getConcurrency()
                   throws java.sql.SQLException
It always returns CONCUR_READ_ONLY.

定義:
インタフェース java.sql.ResultSet 内の getConcurrency
戻り値:
java.sql.ResultSet.CONCUR_READ_ONLY
例外:
java.sql.SQLException

rowUpdated

public boolean rowUpdated()
                   throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の rowUpdated
例外:
java.sql.SQLException

rowInserted

public boolean rowInserted()
                    throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の rowInserted
例外:
java.sql.SQLException

rowDeleted

public boolean rowDeleted()
                   throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の rowDeleted
例外:
java.sql.SQLException

updateNull

public void updateNull(int columnIndex)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateNull
例外:
java.sql.SQLException

updateBoolean

public void updateBoolean(int columnIndex,
                          boolean arg1)
                   throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBoolean
例外:
java.sql.SQLException

updateByte

public void updateByte(int columnIndex,
                       byte arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateByte
例外:
java.sql.SQLException

updateShort

public void updateShort(int columnIndex,
                        short arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateShort
例外:
java.sql.SQLException

updateInt

public void updateInt(int columnIndex,
                      int arg1)
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateInt
例外:
java.sql.SQLException

updateLong

public void updateLong(int columnIndex,
                       long arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateLong
例外:
java.sql.SQLException

updateFloat

public void updateFloat(int columnIndex,
                        float arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateFloat
例外:
java.sql.SQLException

updateDouble

public void updateDouble(int columnIndex,
                         double arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateDouble
例外:
java.sql.SQLException

updateBigDecimal

public void updateBigDecimal(int columnIndex,
                             java.math.BigDecimal arg1)
                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBigDecimal
例外:
java.sql.SQLException

updateString

public void updateString(int columnIndex,
                         java.lang.String arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateString
例外:
java.sql.SQLException

updateBytes

public void updateBytes(int columnIndex,
                        byte[] arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBytes
例外:
java.sql.SQLException

updateDate

public void updateDate(int columnIndex,
                       java.sql.Date arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateDate
例外:
java.sql.SQLException

updateTime

public void updateTime(int columnIndex,
                       java.sql.Time arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateTime
例外:
java.sql.SQLException

updateTimestamp

public void updateTimestamp(int columnIndex,
                            java.sql.Timestamp arg1)
                     throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateTimestamp
例外:
java.sql.SQLException

updateAsciiStream

public void updateAsciiStream(int columnIndex,
                              java.io.InputStream arg1,
                              int arg2)
                       throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateAsciiStream
例外:
java.sql.SQLException

updateBinaryStream

public void updateBinaryStream(int columnIndex,
                               java.io.InputStream arg1,
                               int arg2)
                        throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBinaryStream
例外:
java.sql.SQLException

updateCharacterStream

public void updateCharacterStream(int columnIndex,
                                  java.io.Reader arg1,
                                  int arg2)
                           throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateCharacterStream
例外:
java.sql.SQLException

updateObject

public void updateObject(int columnIndex,
                         java.lang.Object arg1,
                         int arg2)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateObject
例外:
java.sql.SQLException

updateObject

public void updateObject(int columnIndex,
                         java.lang.Object arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateObject
例外:
java.sql.SQLException

updateNull

public void updateNull(java.lang.String columnLabel)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateNull
例外:
java.sql.SQLException

updateBoolean

public void updateBoolean(java.lang.String columnLabel,
                          boolean arg1)
                   throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBoolean
例外:
java.sql.SQLException

updateByte

public void updateByte(java.lang.String columnLabel,
                       byte arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateByte
例外:
java.sql.SQLException

updateShort

public void updateShort(java.lang.String columnLabel,
                        short arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateShort
例外:
java.sql.SQLException

updateInt

public void updateInt(java.lang.String columnLabel,
                      int arg1)
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateInt
例外:
java.sql.SQLException

updateLong

public void updateLong(java.lang.String columnLabel,
                       long arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateLong
例外:
java.sql.SQLException

updateFloat

public void updateFloat(java.lang.String columnLabel,
                        float arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateFloat
例外:
java.sql.SQLException

updateDouble

public void updateDouble(java.lang.String columnLabel,
                         double arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateDouble
例外:
java.sql.SQLException

updateBigDecimal

public void updateBigDecimal(java.lang.String columnLabel,
                             java.math.BigDecimal arg1)
                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBigDecimal
例外:
java.sql.SQLException

updateString

public void updateString(java.lang.String columnLabel,
                         java.lang.String arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateString
例外:
java.sql.SQLException

updateBytes

public void updateBytes(java.lang.String columnLabel,
                        byte[] arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBytes
例外:
java.sql.SQLException

updateDate

public void updateDate(java.lang.String columnLabel,
                       java.sql.Date arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateDate
例外:
java.sql.SQLException

updateTime

public void updateTime(java.lang.String columnLabel,
                       java.sql.Time arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateTime
例外:
java.sql.SQLException

updateTimestamp

public void updateTimestamp(java.lang.String columnLabel,
                            java.sql.Timestamp arg1)
                     throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateTimestamp
例外:
java.sql.SQLException

updateAsciiStream

public void updateAsciiStream(java.lang.String columnLabel,
                              java.io.InputStream arg1,
                              int arg2)
                       throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateAsciiStream
例外:
java.sql.SQLException

updateBinaryStream

public void updateBinaryStream(java.lang.String columnLabel,
                               java.io.InputStream arg1,
                               int arg2)
                        throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBinaryStream
例外:
java.sql.SQLException

updateCharacterStream

public void updateCharacterStream(java.lang.String columnLabel,
                                  java.io.Reader arg1,
                                  int arg2)
                           throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateCharacterStream
例外:
java.sql.SQLException

updateObject

public void updateObject(java.lang.String columnLabel,
                         java.lang.Object arg1,
                         int arg2)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateObject
例外:
java.sql.SQLException

updateObject

public void updateObject(java.lang.String columnLabel,
                         java.lang.Object arg1)
                  throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateObject
例外:
java.sql.SQLException

insertRow

public void insertRow()
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の insertRow
例外:
java.sql.SQLException

updateRow

public void updateRow()
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateRow
例外:
java.sql.SQLException

deleteRow

public void deleteRow()
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の deleteRow
例外:
java.sql.SQLException

refreshRow

public void refreshRow()
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の refreshRow
例外:
java.sql.SQLException

cancelRowUpdates

public void cancelRowUpdates()
                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の cancelRowUpdates
例外:
java.sql.SQLException

moveToInsertRow

public void moveToInsertRow()
                     throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の moveToInsertRow
例外:
java.sql.SQLException

moveToCurrentRow

public void moveToCurrentRow()
                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の moveToCurrentRow
例外:
java.sql.SQLException

getStatement

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

getObject

public java.lang.Object getObject(int columnIndex,
                                  java.util.Map<java.lang.String,java.lang.Class<?>> map)
                           throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getObject
例外:
java.sql.SQLException

getRef

public java.sql.Ref getRef(int columnIndex)
                    throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getRef
例外:
java.sql.SQLException

getBlob

public JdbcBlob getBlob(int columnIndex)
                 throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBlob
例外:
java.sql.SQLException

getClob

public java.sql.Clob getClob(int columnIndex)
                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getClob
例外:
java.sql.SQLException

getArray

public java.sql.Array getArray(int columnIndex)
                        throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の getArray
例外:
java.sql.SQLException

getObject

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

getRef

public java.sql.Ref getRef(java.lang.String columnLabel)
                    throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getRef
例外:
java.sql.SQLException

getBlob

public JdbcBlob getBlob(java.lang.String columnLabel)
                 throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getBlob
例外:
java.sql.SQLException

getClob

public java.sql.Clob getClob(java.lang.String columnLabel)
                      throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getClob
例外:
java.sql.SQLException

getArray

public java.sql.Array getArray(java.lang.String columnLabel)
                        throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getArray
例外:
java.sql.SQLException

getDate

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

getDate

public java.sql.Date getDate(java.lang.String columnLabel,
                             java.util.Calendar cal)
                      throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getDate
例外:
java.sql.SQLException

getTime

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

getTime

public java.sql.Time getTime(java.lang.String columnLabel,
                             java.util.Calendar cal)
                      throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getTime
例外:
java.sql.SQLException

getTimestamp

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

getTimestamp

public java.sql.Timestamp getTimestamp(java.lang.String columnLabel,
                                       java.util.Calendar cal)
                                throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getTimestamp
例外:
java.sql.SQLException

getURL

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

getURL

public java.net.URL getURL(java.lang.String columnLabel)
                    throws java.sql.SQLException
定義:
インタフェース java.sql.ResultSet 内の getURL
例外:
java.sql.SQLException

updateRef

public void updateRef(int columnIndex,
                      java.sql.Ref arg1)
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateRef
例外:
java.sql.SQLException

updateRef

public void updateRef(java.lang.String columnLabel,
                      java.sql.Ref arg1)
               throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateRef
例外:
java.sql.SQLException

updateBlob

public void updateBlob(int columnIndex,
                       java.sql.Blob arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBlob
例外:
java.sql.SQLException

updateBlob

public void updateBlob(java.lang.String columnLabel,
                       java.sql.Blob arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateBlob
例外:
java.sql.SQLException

updateClob

public void updateClob(int columnIndex,
                       java.sql.Clob arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateClob
例外:
java.sql.SQLException

updateClob

public void updateClob(java.lang.String columnLabel,
                       java.sql.Clob arg1)
                throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateClob
例外:
java.sql.SQLException

updateArray

public void updateArray(int columnIndex,
                        java.sql.Array arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateArray
例外:
java.sql.SQLException

updateArray

public void updateArray(java.lang.String columnLabel,
                        java.sql.Array arg1)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ResultSet 内の updateArray
例外:
java.sql.SQLException

isClosed

public boolean isClosed()
                 throws java.sql.SQLException
例外:
java.sql.SQLException

validateResultSetOpen

protected void validateResultSetOpen()
                              throws java.sql.SQLException
例外:
java.sql.SQLException

validateResultSetType

public static void validateResultSetType(int resultSetType)
                                  throws java.sql.SQLException
例外:
java.sql.SQLException

validateResultSetConcurrency

public static void validateResultSetConcurrency(int resultSetConcurrency)
                                         throws java.sql.SQLException
例外:
java.sql.SQLException

validateResultSetHoldability

public static void validateResultSetHoldability(int resultSetHoldability)
                                         throws java.sql.SQLException
例外:
java.sql.SQLException

validateResultSetFetchDirection

public static void validateResultSetFetchDirection(int direction)
                                            throws java.sql.SQLException
例外:
java.sql.SQLException