|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.sqlite.jdbc.JdbcResultSet
public class JdbcResultSet
フィールドの概要 |
---|
インタフェース 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 |
コンストラクタの詳細 |
---|
public JdbcResultSet(java.sql.Statement owner, Statement stmt) throws java.sql.SQLException
java.sql.SQLException
メソッドの詳細 |
---|
public boolean next() throws java.sql.SQLException
java.sql.ResultSet
内の next
java.sql.SQLException
public void close() throws java.sql.SQLException
java.sql.ResultSet
内の close
java.sql.SQLException
public boolean wasNull() throws java.sql.SQLException
java.sql.ResultSet
内の wasNull
java.sql.SQLException
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getString
java.sql.SQLException
public boolean getBoolean(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getBoolean
java.sql.SQLException
public byte getByte(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getByte
java.sql.SQLException
public short getShort(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getShort
java.sql.SQLException
public int getInt(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getInt
java.sql.SQLException
public long getLong(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getLong
java.sql.SQLException
public float getFloat(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getFloat
java.sql.SQLException
public double getDouble(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getDouble
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
java.sql.ResultSet
内の getBigDecimal
java.sql.SQLException
public byte[] getBytes(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getBytes
java.sql.SQLException
public java.sql.Date getDate(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getDate
java.sql.SQLException
public java.sql.Time getTime(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getTime
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getTimestamp
java.sql.SQLException
public java.io.InputStream getAsciiStream(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getAsciiStream
java.sql.SQLException
public java.io.InputStream getUnicodeStream(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getUnicodeStream
java.sql.SQLException
public java.io.InputStream getBinaryStream(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getBinaryStream
java.sql.SQLException
public java.lang.String getString(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getString
java.sql.SQLException
public boolean getBoolean(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getBoolean
java.sql.SQLException
public byte getByte(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getByte
java.sql.SQLException
public short getShort(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getShort
java.sql.SQLException
public int getInt(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getInt
java.sql.SQLException
public long getLong(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getLong
java.sql.SQLException
public float getFloat(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getFloat
java.sql.SQLException
public double getDouble(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getDouble
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel, int arg1) throws java.sql.SQLException
java.sql.ResultSet
内の getBigDecimal
java.sql.SQLException
public byte[] getBytes(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getBytes
java.sql.SQLException
public java.sql.Date getDate(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getDate
java.sql.SQLException
public java.sql.Time getTime(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getTime
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getTimestamp
java.sql.SQLException
public java.io.InputStream getAsciiStream(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getAsciiStream
java.sql.SQLException
public java.io.InputStream getUnicodeStream(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getUnicodeStream
java.sql.SQLException
public java.io.InputStream getBinaryStream(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getBinaryStream
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
java.sql.ResultSet
内の getWarnings
java.sql.SQLException
public void clearWarnings() throws java.sql.SQLException
java.sql.ResultSet
内の clearWarnings
java.sql.SQLException
public java.lang.String getCursorName() throws java.sql.SQLException
java.sql.ResultSet
内の getCursorName
java.sql.SQLException
public JdbcResultSetMetaData getMetaData() throws java.sql.SQLException
java.sql.ResultSet
内の getMetaData
java.sql.SQLException
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getObject
java.sql.SQLException
public java.lang.Object getObject(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getObject
java.sql.SQLException
public int findColumn(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の findColumn
java.sql.SQLException
public java.io.Reader getCharacterStream(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getCharacterStream
java.sql.SQLException
public java.io.Reader getCharacterStream(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getCharacterStream
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getBigDecimal
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getBigDecimal
java.sql.SQLException
public boolean isBeforeFirst() throws java.sql.SQLException
java.sql.ResultSet
内の isBeforeFirst
java.sql.SQLException
public boolean isAfterLast() throws java.sql.SQLException
java.sql.ResultSet
内の isAfterLast
java.sql.SQLException
public boolean isFirst() throws java.sql.SQLException
java.sql.ResultSet
内の isFirst
java.sql.SQLException
public boolean isLast() throws java.sql.SQLException
java.sql.ResultSet
内の isLast
java.sql.SQLException
public void beforeFirst() throws java.sql.SQLException
java.sql.ResultSet
内の beforeFirst
java.sql.SQLException
public void afterLast() throws java.sql.SQLException
java.sql.ResultSet
内の afterLast
java.sql.SQLException
public boolean first() throws java.sql.SQLException
java.sql.ResultSet
内の first
java.sql.SQLException
public boolean last() throws java.sql.SQLException
java.sql.ResultSet
内の last
java.sql.SQLException
public int getRow() throws java.sql.SQLException
java.sql.ResultSet
内の getRow
java.sql.SQLException
public boolean absolute(int row) throws java.sql.SQLException
java.sql.ResultSet
内の absolute
java.sql.SQLException
public boolean relative(int rows) throws java.sql.SQLException
java.sql.ResultSet
内の relative
java.sql.SQLException
public boolean previous() throws java.sql.SQLException
java.sql.ResultSet
内の previous
java.sql.SQLException
public void setFetchDirection(int direction) throws java.sql.SQLException
java.sql.ResultSet
内の setFetchDirection
direction
-
java.sql.SQLException
public int getFetchDirection() throws java.sql.SQLException
java.sql.ResultSet
内の getFetchDirection
java.sql.SQLException
public void setFetchSize(int rows) throws java.sql.SQLException
java.sql.ResultSet
内の setFetchSize
java.sql.SQLException
public int getFetchSize() throws java.sql.SQLException
java.sql.ResultSet
内の getFetchSize
java.sql.SQLException
public int getType() throws java.sql.SQLException
java.sql.ResultSet
内の getType
java.sql.SQLException
public int getConcurrency() throws java.sql.SQLException
java.sql.ResultSet
内の getConcurrency
java.sql.SQLException
public boolean rowUpdated() throws java.sql.SQLException
java.sql.ResultSet
内の rowUpdated
java.sql.SQLException
public boolean rowInserted() throws java.sql.SQLException
java.sql.ResultSet
内の rowInserted
java.sql.SQLException
public boolean rowDeleted() throws java.sql.SQLException
java.sql.ResultSet
内の rowDeleted
java.sql.SQLException
public void updateNull(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の updateNull
java.sql.SQLException
public void updateBoolean(int columnIndex, boolean arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBoolean
java.sql.SQLException
public void updateByte(int columnIndex, byte arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateByte
java.sql.SQLException
public void updateShort(int columnIndex, short arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateShort
java.sql.SQLException
public void updateInt(int columnIndex, int arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateInt
java.sql.SQLException
public void updateLong(int columnIndex, long arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateLong
java.sql.SQLException
public void updateFloat(int columnIndex, float arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateFloat
java.sql.SQLException
public void updateDouble(int columnIndex, double arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateDouble
java.sql.SQLException
public void updateBigDecimal(int columnIndex, java.math.BigDecimal arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBigDecimal
java.sql.SQLException
public void updateString(int columnIndex, java.lang.String arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateString
java.sql.SQLException
public void updateBytes(int columnIndex, byte[] arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBytes
java.sql.SQLException
public void updateDate(int columnIndex, java.sql.Date arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateDate
java.sql.SQLException
public void updateTime(int columnIndex, java.sql.Time arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateTime
java.sql.SQLException
public void updateTimestamp(int columnIndex, java.sql.Timestamp arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateTimestamp
java.sql.SQLException
public void updateAsciiStream(int columnIndex, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateAsciiStream
java.sql.SQLException
public void updateBinaryStream(int columnIndex, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateBinaryStream
java.sql.SQLException
public void updateCharacterStream(int columnIndex, java.io.Reader arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateCharacterStream
java.sql.SQLException
public void updateObject(int columnIndex, java.lang.Object arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateObject
java.sql.SQLException
public void updateObject(int columnIndex, java.lang.Object arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateObject
java.sql.SQLException
public void updateNull(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の updateNull
java.sql.SQLException
public void updateBoolean(java.lang.String columnLabel, boolean arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBoolean
java.sql.SQLException
public void updateByte(java.lang.String columnLabel, byte arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateByte
java.sql.SQLException
public void updateShort(java.lang.String columnLabel, short arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateShort
java.sql.SQLException
public void updateInt(java.lang.String columnLabel, int arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateInt
java.sql.SQLException
public void updateLong(java.lang.String columnLabel, long arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateLong
java.sql.SQLException
public void updateFloat(java.lang.String columnLabel, float arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateFloat
java.sql.SQLException
public void updateDouble(java.lang.String columnLabel, double arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateDouble
java.sql.SQLException
public void updateBigDecimal(java.lang.String columnLabel, java.math.BigDecimal arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBigDecimal
java.sql.SQLException
public void updateString(java.lang.String columnLabel, java.lang.String arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateString
java.sql.SQLException
public void updateBytes(java.lang.String columnLabel, byte[] arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBytes
java.sql.SQLException
public void updateDate(java.lang.String columnLabel, java.sql.Date arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateDate
java.sql.SQLException
public void updateTime(java.lang.String columnLabel, java.sql.Time arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateTime
java.sql.SQLException
public void updateTimestamp(java.lang.String columnLabel, java.sql.Timestamp arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateTimestamp
java.sql.SQLException
public void updateAsciiStream(java.lang.String columnLabel, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateAsciiStream
java.sql.SQLException
public void updateBinaryStream(java.lang.String columnLabel, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateBinaryStream
java.sql.SQLException
public void updateCharacterStream(java.lang.String columnLabel, java.io.Reader arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateCharacterStream
java.sql.SQLException
public void updateObject(java.lang.String columnLabel, java.lang.Object arg1, int arg2) throws java.sql.SQLException
java.sql.ResultSet
内の updateObject
java.sql.SQLException
public void updateObject(java.lang.String columnLabel, java.lang.Object arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateObject
java.sql.SQLException
public void insertRow() throws java.sql.SQLException
java.sql.ResultSet
内の insertRow
java.sql.SQLException
public void updateRow() throws java.sql.SQLException
java.sql.ResultSet
内の updateRow
java.sql.SQLException
public void deleteRow() throws java.sql.SQLException
java.sql.ResultSet
内の deleteRow
java.sql.SQLException
public void refreshRow() throws java.sql.SQLException
java.sql.ResultSet
内の refreshRow
java.sql.SQLException
public void cancelRowUpdates() throws java.sql.SQLException
java.sql.ResultSet
内の cancelRowUpdates
java.sql.SQLException
public void moveToInsertRow() throws java.sql.SQLException
java.sql.ResultSet
内の moveToInsertRow
java.sql.SQLException
public void moveToCurrentRow() throws java.sql.SQLException
java.sql.ResultSet
内の moveToCurrentRow
java.sql.SQLException
public java.sql.Statement getStatement() throws java.sql.SQLException
java.sql.ResultSet
内の getStatement
java.sql.SQLException
public java.lang.Object getObject(int columnIndex, java.util.Map<java.lang.String,java.lang.Class<?>> map) throws java.sql.SQLException
java.sql.ResultSet
内の getObject
java.sql.SQLException
public java.sql.Ref getRef(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getRef
java.sql.SQLException
public JdbcBlob getBlob(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getBlob
java.sql.SQLException
public java.sql.Clob getClob(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getClob
java.sql.SQLException
public java.sql.Array getArray(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getArray
java.sql.SQLException
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
public java.sql.Ref getRef(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getRef
java.sql.SQLException
public JdbcBlob getBlob(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getBlob
java.sql.SQLException
public java.sql.Clob getClob(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getClob
java.sql.SQLException
public java.sql.Array getArray(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getArray
java.sql.SQLException
public java.sql.Date getDate(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getDate
java.sql.SQLException
public java.sql.Date getDate(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getDate
java.sql.SQLException
public java.sql.Time getTime(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getTime
java.sql.SQLException
public java.sql.Time getTime(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getTime
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getTimestamp
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
java.sql.ResultSet
内の getTimestamp
java.sql.SQLException
public java.net.URL getURL(int columnIndex) throws java.sql.SQLException
java.sql.ResultSet
内の getURL
java.sql.SQLException
public java.net.URL getURL(java.lang.String columnLabel) throws java.sql.SQLException
java.sql.ResultSet
内の getURL
java.sql.SQLException
public void updateRef(int columnIndex, java.sql.Ref arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateRef
java.sql.SQLException
public void updateRef(java.lang.String columnLabel, java.sql.Ref arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateRef
java.sql.SQLException
public void updateBlob(int columnIndex, java.sql.Blob arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBlob
java.sql.SQLException
public void updateBlob(java.lang.String columnLabel, java.sql.Blob arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateBlob
java.sql.SQLException
public void updateClob(int columnIndex, java.sql.Clob arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateClob
java.sql.SQLException
public void updateClob(java.lang.String columnLabel, java.sql.Clob arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateClob
java.sql.SQLException
public void updateArray(int columnIndex, java.sql.Array arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateArray
java.sql.SQLException
public void updateArray(java.lang.String columnLabel, java.sql.Array arg1) throws java.sql.SQLException
java.sql.ResultSet
内の updateArray
java.sql.SQLException
public boolean isClosed() throws java.sql.SQLException
java.sql.SQLException
protected void validateResultSetOpen() throws java.sql.SQLException
java.sql.SQLException
public static void validateResultSetType(int resultSetType) throws java.sql.SQLException
java.sql.SQLException
public static void validateResultSetConcurrency(int resultSetConcurrency) throws java.sql.SQLException
java.sql.SQLException
public static void validateResultSetHoldability(int resultSetHoldability) throws java.sql.SQLException
java.sql.SQLException
public static void validateResultSetFetchDirection(int direction) throws java.sql.SQLException
java.sql.SQLException
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |