|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object tribble.sql.ResultSetAdapter
public class ResultSetAdapter
JDBC result set adapter class. Provides all the methods required by the java.sql.ResultSet class, most of which do nothing but throw an UnsupportedOperationException. Subclasses that extend this base class can then implement only the methods that they need.
Copyright ©2008 by David R. Tribble, all rights reserved.
Permission is granted to any person or entity except those designated by
by the United States Department of State as a terrorist, or terrorist
government or agency, to use and distribute this source code provided
that the original copyright notice remains present and unaltered.
Field Summary | |
---|---|
static int |
CLOSE_CURSORS_AT_COMMIT
Constant indicating that ResultSet objects should be closed when the method Connection.commit() is called. |
static int |
CONCUR_READ_ONLY
Constant indicating the concurrency mode for a ResultSet object that may not be updated. |
static int |
CONCUR_UPDATABLE
Constant indicating the concurrency mode for a ResultSet object that may be updated. |
static int |
FETCH_FORWARD
Constant indicating that the rows in a result set will be processed in a forward direction; first-to-last. |
static int |
FETCH_REVERSE
Constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first. |
static int |
FETCH_UNKNOWN
Constant indicating that the order in which rows in a result set will be processed is unknown. |
static int |
HOLD_CURSORS_OVER_COMMIT
Constant indicating that ResultSet objects should not be closed when the method Connection.commit() is called. |
(package private) static java.lang.String |
REV
|
static int |
TYPE_FORWARD_ONLY
Constant indicating the type for a ResultSet object whose cursor may move only forward. |
static int |
TYPE_SCROLL_INSENSITIVE
Constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes made by others. |
static int |
TYPE_SCROLL_SENSITIVE
Constant indicating the type for a ResultSet object that is scrollable but sensitive to changes made by others. |
Constructor Summary | |
---|---|
ResultSetAdapter()
Constructor. |
Method Summary | |
---|---|
boolean |
absolute(int rows)
|
void |
afterLast()
|
void |
beforeFirst()
|
void |
cancelRowUpdates()
|
void |
clearWarnings()
|
void |
close()
|
void |
deleteRow()
|
int |
findColumn(java.lang.String col)
|
boolean |
first()
|
java.sql.Array |
getArray(int col)
|
java.sql.Array |
getArray(java.lang.String col)
|
java.io.InputStream |
getAsciiStream(int col)
|
java.io.InputStream |
getAsciiStream(java.lang.String col)
|
java.math.BigDecimal |
getBigDecimal(int col)
|
java.math.BigDecimal |
getBigDecimal(int col,
int n)
Deprecated. |
java.math.BigDecimal |
getBigDecimal(java.lang.String col)
|
java.math.BigDecimal |
getBigDecimal(java.lang.String col,
int n)
Deprecated. |
java.io.InputStream |
getBinaryStream(int col)
|
java.io.InputStream |
getBinaryStream(java.lang.String col)
|
java.sql.Blob |
getBlob(int col)
|
java.sql.Blob |
getBlob(java.lang.String col)
|
boolean |
getBoolean(int col)
|
boolean |
getBoolean(java.lang.String col)
|
byte |
getByte(int col)
|
byte |
getByte(java.lang.String col)
|
byte[] |
getBytes(int col)
|
byte[] |
getBytes(java.lang.String col)
|
java.io.Reader |
getCharacterStream(int col)
|
java.io.Reader |
getCharacterStream(java.lang.String col)
|
java.sql.Clob |
getClob(int col)
|
java.sql.Clob |
getClob(java.lang.String col)
|
int |
getConcurrency()
|
java.lang.String |
getCursorName()
|
java.sql.Date |
getDate(int col)
|
java.sql.Date |
getDate(int col,
java.util.Calendar cal)
|
java.sql.Date |
getDate(java.lang.String col)
|
java.sql.Date |
getDate(java.lang.String col,
java.util.Calendar cal)
|
double |
getDouble(int col)
|
double |
getDouble(java.lang.String col)
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
float |
getFloat(int col)
|
float |
getFloat(java.lang.String col)
|
int |
getInt(int col)
|
int |
getInt(java.lang.String col)
|
long |
getLong(int col)
|
long |
getLong(java.lang.String col)
|
java.sql.ResultSetMetaData |
getMetaData()
|
java.lang.Object |
getObject(int col)
|
java.lang.Object |
getObject(int s,
java.util.Map m)
|
java.lang.Object |
getObject(java.lang.String col)
|
java.lang.Object |
getObject(java.lang.String s,
java.util.Map m)
|
java.sql.Ref |
getRef(int col)
|
java.sql.Ref |
getRef(java.lang.String col)
|
int |
getRow()
|
short |
getShort(int col)
|
short |
getShort(java.lang.String col)
|
java.sql.Statement |
getStatement()
|
java.lang.String |
getString(int col)
|
java.lang.String |
getString(java.lang.String col)
|
java.sql.Time |
getTime(int col)
|
java.sql.Time |
getTime(int col,
java.util.Calendar cal)
|
java.sql.Time |
getTime(java.lang.String col)
|
java.sql.Time |
getTime(java.lang.String col,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(int col)
|
java.sql.Timestamp |
getTimestamp(int col,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(java.lang.String col)
|
java.sql.Timestamp |
getTimestamp(java.lang.String col,
java.util.Calendar cal)
|
int |
getType()
|
java.io.InputStream |
getUnicodeStream(int col)
Deprecated. |
java.io.InputStream |
getUnicodeStream(java.lang.String col)
Deprecated. |
java.net.URL |
getURL(int col)
|
java.net.URL |
getURL(java.lang.String col)
|
java.sql.SQLWarning |
getWarnings()
|
void |
insertRow()
|
boolean |
isAfterLast()
|
boolean |
isBeforeFirst()
|
boolean |
isFirst()
|
boolean |
isLast()
|
boolean |
last()
|
void |
moveToCurrentRow()
|
void |
moveToInsertRow()
|
boolean |
next()
|
boolean |
previous()
|
void |
refreshRow()
|
boolean |
relative(int rows)
|
boolean |
rowDeleted()
|
boolean |
rowInserted()
|
boolean |
rowUpdated()
|
void |
setFetchDirection(int d)
|
void |
setFetchSize(int rows)
|
void |
updateArray(int col,
java.sql.Array val)
|
void |
updateArray(java.lang.String col,
java.sql.Array val)
|
void |
updateAsciiStream(int col,
java.io.InputStream in,
int n)
|
void |
updateAsciiStream(java.lang.String col,
java.io.InputStream in,
int n)
|
void |
updateBigDecimal(int col,
java.math.BigDecimal val)
|
void |
updateBigDecimal(java.lang.String col,
java.math.BigDecimal val)
|
void |
updateBinaryStream(int col,
java.io.InputStream in,
int n)
|
void |
updateBinaryStream(java.lang.String col,
java.io.InputStream in,
int n)
|
void |
updateBlob(int col,
java.sql.Blob val)
|
void |
updateBlob(java.lang.String col,
java.sql.Blob val)
|
void |
updateBoolean(int col,
boolean val)
|
void |
updateBoolean(java.lang.String col,
boolean val)
|
void |
updateByte(int col,
byte val)
|
void |
updateByte(java.lang.String col,
byte val)
|
void |
updateBytes(int s,
byte[] val)
|
void |
updateBytes(java.lang.String s,
byte[] val)
|
void |
updateCharacterStream(int col,
java.io.Reader in,
int n)
|
void |
updateCharacterStream(java.lang.String col,
java.io.Reader in,
int n)
|
void |
updateClob(int col,
java.sql.Clob val)
|
void |
updateClob(java.lang.String col,
java.sql.Clob val)
|
void |
updateDate(int col,
java.sql.Date val)
|
void |
updateDate(java.lang.String col,
java.sql.Date val)
|
void |
updateDouble(int col,
double val)
|
void |
updateDouble(java.lang.String col,
double val)
|
void |
updateFloat(int col,
float val)
|
void |
updateFloat(java.lang.String col,
float val)
|
void |
updateInt(int col,
int val)
|
void |
updateInt(java.lang.String col,
int val)
|
void |
updateLong(int col,
long val)
|
void |
updateLong(java.lang.String col,
long val)
|
void |
updateNull(int col)
|
void |
updateNull(java.lang.String col)
|
void |
updateObject(int col,
java.lang.Object val)
|
void |
updateObject(int col,
java.lang.Object val,
int n)
|
void |
updateObject(java.lang.String col,
java.lang.Object val)
|
void |
updateObject(java.lang.String col,
java.lang.Object val,
int n)
|
void |
updateRef(int col,
java.sql.Ref val)
|
void |
updateRef(java.lang.String col,
java.sql.Ref val)
|
void |
updateRow()
|
void |
updateShort(int col,
short val)
|
void |
updateShort(java.lang.String col,
short val)
|
void |
updateString(int col,
java.lang.String val)
|
void |
updateString(java.lang.String col,
java.lang.String val)
|
void |
updateTime(int col,
java.sql.Time val)
|
void |
updateTime(java.lang.String col,
java.sql.Time val)
|
void |
updateTimestamp(int col,
java.sql.Timestamp val)
|
void |
updateTimestamp(java.lang.String col,
java.sql.Timestamp val)
|
void |
updateUnicodeStream(int col,
java.io.InputStream in,
int n)
|
void |
updateUnicodeStream(java.lang.String col,
java.io.InputStream in,
int n)
|
void |
updateURL(int col,
java.net.URL val)
|
void |
updateURL(java.lang.String col,
java.net.URL val)
|
boolean |
wasNull()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
static final java.lang.String REV
public static final int CLOSE_CURSORS_AT_COMMIT
public static final int HOLD_CURSORS_OVER_COMMIT
public static final int CONCUR_READ_ONLY
public static final int CONCUR_UPDATABLE
public static final int FETCH_FORWARD
public static final int FETCH_REVERSE
public static final int FETCH_UNKNOWN
public static final int TYPE_FORWARD_ONLY
public static final int TYPE_SCROLL_INSENSITIVE
public static final int TYPE_SCROLL_SENSITIVE
Constructor Detail |
---|
public ResultSetAdapter()
Method Detail |
---|
public void close() throws java.sql.SQLException
close
in interface java.sql.ResultSet
java.sql.SQLException
public int getType() throws java.sql.SQLException
getType
in interface java.sql.ResultSet
java.sql.SQLException
public int getConcurrency() throws java.sql.SQLException
getConcurrency
in interface java.sql.ResultSet
java.sql.SQLException
public boolean next() throws java.sql.SQLException
next
in interface java.sql.ResultSet
java.sql.SQLException
public boolean previous() throws java.sql.SQLException
previous
in interface java.sql.ResultSet
java.sql.SQLException
public boolean first() throws java.sql.SQLException
first
in interface java.sql.ResultSet
java.sql.SQLException
public boolean last() throws java.sql.SQLException
last
in interface java.sql.ResultSet
java.sql.SQLException
public boolean absolute(int rows) throws java.sql.SQLException
absolute
in interface java.sql.ResultSet
java.sql.SQLException
public boolean relative(int rows) throws java.sql.SQLException
relative
in interface java.sql.ResultSet
java.sql.SQLException
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
public void afterLast() throws java.sql.SQLException
afterLast
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isFirst() throws java.sql.SQLException
isFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isLast() throws java.sql.SQLException
isLast
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface java.sql.ResultSet
java.sql.SQLException
public int getRow() throws java.sql.SQLException
getRow
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Statement getStatement() throws java.sql.SQLException
getStatement
in interface java.sql.ResultSet
java.sql.SQLException
public int getFetchSize() throws java.sql.SQLException
getFetchSize
in interface java.sql.ResultSet
java.sql.SQLException
public int getFetchDirection() throws java.sql.SQLException
getFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface java.sql.ResultSet
java.sql.SQLException
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface java.sql.ResultSet
java.sql.SQLException
public void setFetchDirection(int d) throws java.sql.SQLException
setFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
public void setFetchSize(int rows) throws java.sql.SQLException
setFetchSize
in interface java.sql.ResultSet
java.sql.SQLException
public boolean wasNull() throws java.sql.SQLException
wasNull
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowDeleted() throws java.sql.SQLException
rowDeleted
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowInserted() throws java.sql.SQLException
rowInserted
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowUpdated() throws java.sql.SQLException
rowUpdated
in interface java.sql.ResultSet
java.sql.SQLException
public void cancelRowUpdates() throws java.sql.SQLException
cancelRowUpdates
in interface java.sql.ResultSet
java.sql.SQLException
public void moveToCurrentRow() throws java.sql.SQLException
moveToCurrentRow
in interface java.sql.ResultSet
java.sql.SQLException
public void moveToInsertRow() throws java.sql.SQLException
moveToInsertRow
in interface java.sql.ResultSet
java.sql.SQLException
public void insertRow() throws java.sql.SQLException
insertRow
in interface java.sql.ResultSet
java.sql.SQLException
public void refreshRow() throws java.sql.SQLException
refreshRow
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRow() throws java.sql.SQLException
updateRow
in interface java.sql.ResultSet
java.sql.SQLException
public void deleteRow() throws java.sql.SQLException
deleteRow
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNull(int col) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNull(java.lang.String col) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
public int findColumn(java.lang.String col) throws java.sql.SQLException
findColumn
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface java.sql.ResultSet
java.sql.SQLException
public boolean getBoolean(int col) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public boolean getBoolean(java.lang.String col) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBoolean(int col, boolean val) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBoolean(java.lang.String col, boolean val) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public byte getByte(int col) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
public byte getByte(java.lang.String col) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
public void updateByte(int col, byte val) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
public void updateByte(java.lang.String col, byte val) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(int col) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(java.lang.String col) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public void updateShort(int col, short val) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
public void updateShort(java.lang.String col, short val) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(int col) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(java.lang.String col) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public void updateInt(int col, int val) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
public void updateInt(java.lang.String col, int val) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(int col) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(java.lang.String col) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public void updateLong(int col, long val) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
public void updateLong(java.lang.String col, long val) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(int col) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(java.lang.String col) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public void updateFloat(int col, float val) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
public void updateFloat(java.lang.String col, float val) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(int col) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(java.lang.String col) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDouble(int col, double val) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDouble(java.lang.String col, double val) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(int col) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(java.lang.String col) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateString(int col, java.lang.String val) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateString(java.lang.String col, java.lang.String val) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(int col) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(int col, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(java.lang.String col) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(java.lang.String col, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDate(int col, java.sql.Date val) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDate(java.lang.String col, java.sql.Date val) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(int col) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(int col, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(java.lang.String col) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(java.lang.String col, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTime(int col, java.sql.Time val) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTime(java.lang.String col, java.sql.Time val) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int col) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int col, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String col) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String col, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTimestamp(int col, java.sql.Timestamp val) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTimestamp(java.lang.String col, java.sql.Timestamp val) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Ref getRef(int col) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Ref getRef(java.lang.String col) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRef(int col, java.sql.Ref val) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRef(java.lang.String col, java.sql.Ref val) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Blob getBlob(int col) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Blob getBlob(java.lang.String col) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(int col, java.sql.Blob val) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(java.lang.String col, java.sql.Blob val) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Clob getClob(int col) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Clob getClob(java.lang.String col) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(int col, java.sql.Clob val) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(java.lang.String col, java.sql.Clob val) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Array getArray(int col) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Array getArray(java.lang.String col) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
public void updateArray(int col, java.sql.Array val) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
public void updateArray(java.lang.String col, java.sql.Array val) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
public java.net.URL getURL(int col) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
public java.net.URL getURL(java.lang.String col) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
public void updateURL(int col, java.net.URL val) throws java.sql.SQLException
java.sql.SQLException
public void updateURL(java.lang.String col, java.net.URL val) throws java.sql.SQLException
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int col) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int col, int n) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String col) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String col, int n) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBigDecimal(int col, java.math.BigDecimal val) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBigDecimal(java.lang.String col, java.math.BigDecimal val) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(int col) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(java.lang.String col) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(int s, java.util.Map m) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(java.lang.String s, java.util.Map m) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(int col, java.lang.Object val) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(int col, java.lang.Object val, int n) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(java.lang.String col, java.lang.Object val) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(java.lang.String col, java.lang.Object val, int n) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public byte[] getBytes(int col) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
public byte[] getBytes(java.lang.String col) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBytes(int s, byte[] val) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBytes(java.lang.String s, byte[] val) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getCharacterStream(int col) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getCharacterStream(java.lang.String col) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(int col, java.io.Reader in, int n) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(java.lang.String col, java.io.Reader in, int n) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getBinaryStream(int col) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getBinaryStream(java.lang.String col) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(int col, java.io.InputStream in, int n) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(java.lang.String col, java.io.InputStream in, int n) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getAsciiStream(int col) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getAsciiStream(java.lang.String col) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(int col, java.io.InputStream in, int n) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(java.lang.String col, java.io.InputStream in, int n) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getUnicodeStream(int col) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getUnicodeStream(java.lang.String col) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateUnicodeStream(int col, java.io.InputStream in, int n) throws java.sql.SQLException
java.sql.SQLException
public void updateUnicodeStream(java.lang.String col, java.io.InputStream in, int n) throws java.sql.SQLException
java.sql.SQLException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |