|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.wrq.apptrieve.jdbc.ApptrieveResultSet
public class ApptrieveResultSet
This class implements the JDBC specification for the ResultSet interface. The class is designed to hold the results of database queries.
Field Summary |
---|
Fields inherited from interface 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 |
Method Summary | |
---|---|
boolean |
absolute(int row)
Moves the cursor to an absolute position. |
void |
afterLast()
Moves the cursor to the end of the result set, just after the last row. |
void |
beforeFirst()
Moves the cursor to the front of the result set, just before the first row. |
void |
cancelRowUpdates()
Rolls back all updates made to a row made via an updateXXX method but before calling the method updateRow. |
void |
clearWarnings()
Clears the warning chain. |
void |
close()
Closes a result set. |
void |
deleteRow()
Deletes the current row from the ResultSet and from the underlying database. |
int |
findColumn(java.lang.String name)
Returns the column number for a given column name name. |
boolean |
first()
Moves the cursor to the first row in the result set. |
java.sql.Array |
getArray(int columnIndex)
Gets the value of an indexed column as an Array object. |
java.sql.Array |
getArray(java.lang.String columnName)
Gets the value of an named column as an Array object. |
java.io.InputStream |
getAsciiStream(int columnIndex)
Gets the value for an indexed column as an ASCII stream. |
java.io.InputStream |
getAsciiStream(java.lang.String columnName)
Gets the value for a named column as an ASCII stream. |
java.math.BigDecimal |
getBigDecimal(int columnIndex)
Gets the value of a column in the current row as a java.math.BigDecimal object with full precision |
java.math.BigDecimal |
getBigDecimal(int columnIndex,
int scale)
Deprecated. use getBigDecimal(String columnIndex) |
java.math.BigDecimal |
getBigDecimal(java.lang.String columnName)
Gets the value of a column in the current row as a java.math.BigDecimal object with full precision |
java.math.BigDecimal |
getBigDecimal(java.lang.String columnName,
int scale)
Deprecated. use getBigDecimal(String columnName) |
java.io.InputStream |
getBinaryStream(int columnIndex)
Gets the value for an indexed column as a stream of uninterpreted bytes. |
java.io.InputStream |
getBinaryStream(java.lang.String columnName)
Gets the value for a named column as a stream of uninterpreted bytes. |
java.sql.Blob |
getBlob(int columnIndex)
Gets the value of an indexed column as an SQL Blob object. |
java.sql.Blob |
getBlob(java.lang.String columnName)
Gets the value of a named column as an SQL Blob object. |
boolean |
getBoolean(int columnIndex)
Retrieves an indexed column as a boolean value. |
boolean |
getBoolean(java.lang.String columnName)
Retrieves a named column as a boolean value. |
byte |
getByte(int columnIndex)
Retrieves an indexed column as a byte. |
byte |
getByte(java.lang.String columnName)
Retrieves a named column as a byte. |
byte[] |
getBytes(int columnIndex)
Retrieves an indexed column as a byte array. |
byte[] |
getBytes(java.lang.String columnName)
Retrieves a named column as a byte array. |
java.io.Reader |
getCharacterStream(int columnIndex)
Retrieves an indexed column as a character stream. |
java.io.Reader |
getCharacterStream(java.lang.String columnName)
Retrieves a named column as a character stream. |
java.sql.Clob |
getClob(int columnIndex)
Gets the value of an indexed column as an SQL Clob object. |
java.sql.Clob |
getClob(java.lang.String columnName)
Gets the value of a named column as an SQL Clob object. |
int |
getConcurrency()
Gets the concurrency type for this ResultSet object. |
java.lang.String |
getCursorName()
Returns a cursor name. |
java.sql.Date |
getDate(int columnIndex)
Retrieves an indexed column as a Date. |
java.sql.Date |
getDate(int columnIndex,
java.util.Calendar cal)
Retrieves an indexed column as a Date, using cal to construct an appropriate value when the database does not store timezone information. |
java.sql.Date |
getDate(java.lang.String columnName)
Retrieves a named column as a Date. |
java.sql.Date |
getDate(java.lang.String columnName,
java.util.Calendar cal)
Retrieves a named column as a Date, using cal to construct an appropriate value when the database does not store timezone information. |
double |
getDouble(int columnIndex)
Retrieves an indexed column as a double. |
double |
getDouble(java.lang.String columnName)
Retrieves a named column as a double. |
int |
getFetchDirection()
Gets the fetch direction for this ResultSet object. |
int |
getFetchSize()
Gets the fetch size for this ResultSet object. |
float |
getFloat(int columnIndex)
Retrieves an indexed column as a float. |
float |
getFloat(java.lang.String columnName)
Retrieves a named column as a float. |
int |
getInt(int columnIndex)
Retrieves an indexed column as an int. |
int |
getInt(java.lang.String columnName)
Retrieves a named column as an int. |
long |
getLong(int column)
Retrieves an indexed column as a long. |
long |
getLong(java.lang.String columnName)
Retrieves a named column as a long. |
java.sql.ResultSetMetaData |
getMetaData()
Returns meta-deta on a ResultSet. |
java.lang.Object |
getObject(int columnIndex)
Retrieves an indexed column as an Object. |
java.lang.Object |
getObject(int columnIndex,
java.util.Map map)
Retrieves an indexed column as an Object, using the supplied type map to map a SQL UDT value to a class in the Java programming language. |
java.lang.Object |
getObject(java.lang.String columnName)
Retrieves a named column as an Object. |
java.lang.Object |
getObject(java.lang.String columnName,
java.util.Map map)
Retrieves a named column as an Object, using the supplied type map to map a SQL UDT value to a class in the Java programming language. |
java.sql.Ref |
getRef(int columnIndex)
Retrieves an indexed column as an Ref object. |
java.sql.Ref |
getRef(java.lang.String colName)
Retrieves a named column as an Ref object. |
int |
getRow()
Retrieves the current row number of this ResultSet object. |
int |
getRowCount()
Gets the number of rows in this ResultSet object. |
short |
getShort(int columnIndex)
Retrieves an indexed column as a short. |
short |
getShort(java.lang.String columnName)
Retrieves a named column as a short. |
java.sql.Statement |
getStatement()
Retrieves the Statement object that produced this ResultSet object. |
java.lang.String |
getString(int columnIndex)
Retrieves an indexed column as a String object. |
java.lang.String |
getString(java.lang.String columnName)
Retrieves a named column as a String object. |
java.sql.Time |
getTime(int columnIndex)
Retrieves an indexed column as a Time object. |
java.sql.Time |
getTime(int columnIndex,
java.util.Calendar cal)
Retrieves an indexed column as a Time object, using cal to construct an appropriate value when the database does not store timezone information. |
java.sql.Time |
getTime(java.lang.String columnName)
Retrieves a named column as a Time object. |
java.sql.Time |
getTime(java.lang.String columnName,
java.util.Calendar cal)
Retrieves a named column as a Time object, using cal to construct an appropriate value when the database does not store timezone information. |
java.sql.Timestamp |
getTimestamp(int columnIndex)
Retrieves an indexed column as a Timestamp object. |
java.sql.Timestamp |
getTimestamp(int columnIndex,
java.util.Calendar cal)
Retrieves an indexed column as a Timestamp object, using cal to construct an appropriate value when the database does not store timezone information. |
java.sql.Timestamp |
getTimestamp(java.lang.String columnName)
Retrieves a named column as a Timestamp object. |
java.sql.Timestamp |
getTimestamp(java.lang.String columnName,
java.util.Calendar cal)
Retrieves a named column as a Timestamp object, using cal to construct an appropriate value when the database does not store timezone information. |
int |
getType()
Obtains the type of this ResultSet object. |
java.io.InputStream |
getUnicodeStream(int columnIndex)
Deprecated. - use getCharacterStream instead |
java.io.InputStream |
getUnicodeStream(java.lang.String columnName)
Deprecated. - use getCharacterStream instead |
java.net.URL |
getURL(int columnIndex)
This method is not supported by the Host Integrator driver. |
java.net.URL |
getURL(java.lang.String columnName)
This method is not supported by the Host Integrator driver. |
java.lang.Object |
getValueAt(int aRow,
int aColumn)
Retrieves the value at a particular row, column. |
java.sql.SQLWarning |
getWarnings()
Gets the chain of warnings for this ResultSet object. |
void |
insertRow()
Inserts a row into the ResultSet object The Host Integrator driver does this method. |
boolean |
isAfterLast()
Discovers whether the cursor is after the last row in the result set. |
boolean |
isBeforeFirst()
Discovers whether the cursor is before the first row in the result set |
boolean |
isFirst()
Discovers whether the cursor is on the first row of the result set. |
boolean |
isLast()
Discovers whether the cursor is on the last row of the result set Returns false when the result set contains no rows. |
boolean |
last()
Moves the cursor to the last row in the result set. |
void |
moveToCurrentRow()
Moves the cursor to the remembered cursor position in this ResultSet object. |
void |
moveToInsertRow()
Moves the cursor to the insert row for this ResultSet object. |
boolean |
next()
Moves the current cursor to the next row, returning true if there is another row for processing. |
boolean |
previous()
Moves the current cursor to the previous row, returning true if there is another row for processing. |
void |
refreshRow()
Replaces the values in the current row of this ResultSet object with their current values in the database. |
boolean |
relative(int rows)
Moves the current cursor relative to the current row, returning true if the new row is a valid row. |
boolean |
rowDeleted()
Discovers whether the current row in this ResultSet has been deleted. |
boolean |
rowInserted()
Discovers whether the current row in this ResultSet has been inserted. |
boolean |
rowUpdated()
Discovers whether the current row in this ResultSet has been updated. |
void |
setFetchDirection(int direction)
Sets the fetch direction for this ResultSet object. |
void |
setFetchSize(int rows)
Sets the fetch size for this ResultSet object. |
java.lang.String |
toString()
Converts the ResultSet to a String object |
void |
updateArray(int columnIndex,
java.sql.Array x)
This method is not supported by the Host Integrator driver. |
void |
updateArray(java.lang.String columnName,
java.sql.Array x)
This method is not supported by the Host Integrator driver. |
void |
updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
Updates an indexed column with a java.io.InputStream object. |
void |
updateAsciiStream(java.lang.String columnName,
java.io.InputStream x,
int length)
Updates a named column with a java.io.InputStream object. |
void |
updateBigDecimal(int columnIndex,
java.math.BigDecimal x)
Updates an indexed column with a BigDecimal object. |
void |
updateBigDecimal(java.lang.String columnName,
java.math.BigDecimal x)
Updates a named column with a BigDecimal object. |
void |
updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
Updates an indexed column with a java.io.InputStream object. |
void |
updateBinaryStream(java.lang.String columnName,
java.io.InputStream x,
int length)
Updates a named column with a java.io.InputStream object. |
void |
updateBlob(int columnIndex,
java.sql.Blob x)
This method is not supported by the Host Integrator driver. |
void |
updateBlob(java.lang.String columnName,
java.sql.Blob x)
This method is not supported by the Host Integrator driver. |
void |
updateBoolean(int columnIndex,
boolean x)
Updates an indexed column with a boolean value. |
void |
updateBoolean(java.lang.String columnName,
boolean x)
Updates a named column with a boolean value. |
void |
updateByte(int columnIndex,
byte x)
Updates an indexed column with a byte value. |
void |
updateByte(java.lang.String columnName,
byte x)
Updates a named column with a byte value. |
void |
updateBytes(int columnIndex,
byte[] x)
Updates an indexed column with a byte array. |
void |
updateBytes(java.lang.String columnName,
byte[] x)
Updates a named column with a byte array. |
void |
updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
Updates an indexed column with a Reader object. |
void |
updateCharacterStream(java.lang.String columnName,
java.io.Reader reader,
int length)
Updates a named column with a Reader object. |
void |
updateClob(int columnIndex,
java.sql.Clob x)
This method is not supported by the Host Integrator driver. |
void |
updateClob(java.lang.String columnName,
java.sql.Clob x)
This method is not supported by the Host Integrator driver. |
void |
updateDate(int columnIndex,
java.sql.Date x)
Updates an indexed column with a Date object. |
void |
updateDate(java.lang.String columnName,
java.sql.Date x)
Updates a named column with a Date object. |
void |
updateDouble(int columnIndex,
double x)
Updates an indexed column with a double value. |
void |
updateDouble(java.lang.String columnName,
double x)
Updates a named column with a double value. |
void |
updateFloat(int columnIndex,
float x)
Updates an indexed column with a float value. |
void |
updateFloat(java.lang.String columnName,
float x)
Updates a named column with a float value. |
void |
updateInt(int columnIndex,
int x)
Updates an indexed column with an int value. |
void |
updateInt(java.lang.String columnName,
int x)
Updates a named column with an int value. |
void |
updateLong(int columnIndex,
long x)
Updates an indexed column with a long value. |
void |
updateLong(java.lang.String columnName,
long x)
Updates a named column with a long value. |
void |
updateNull(int columnIndex)
Updates an indexed column with a null. |
void |
updateNull(java.lang.String columnName)
Updates a named column with a null. |
void |
updateObject(int columnIndex,
java.lang.Object x)
Updates an indexed column with an Object value. |
void |
updateObject(int columnIndex,
java.lang.Object x,
int scale)
Updates an indexed column with a Object value. |
void |
updateObject(java.lang.String columnName,
java.lang.Object x)
Updates a named column with an Object value. |
void |
updateObject(java.lang.String columnName,
java.lang.Object x,
int scale)
Updates a named column with an Object value. |
void |
updateRef(int columnIndex,
java.sql.Ref x)
This method is not supported by the Host Integrator driver. |
void |
updateRef(java.lang.String columnName,
java.sql.Ref x)
This method is not supported by the Host Integrator driver. |
void |
updateRow()
Updates the current row in this ResultSet object. |
void |
updateShort(int columnIndex,
short x)
Updates an indexed column with a short value. |
void |
updateShort(java.lang.String columnName,
short x)
Updates a named column with a short value. |
void |
updateString(int columnIndex,
java.lang.String x)
Updates an indexed column with a java.lang.String object. |
void |
updateString(java.lang.String columnName,
java.lang.String x)
Updates a named column with a java.lang.String object. |
void |
updateTime(int columnIndex,
java.sql.Time x)
Updates an indexed column with a Time object. |
void |
updateTime(java.lang.String columnName,
java.sql.Time x)
Updates a named column with a Time object. |
void |
updateTimestamp(int columnIndex,
java.sql.Timestamp x)
Updates an indexed column with a Timestamp object. |
void |
updateTimestamp(java.lang.String columnName,
java.sql.Timestamp x)
Updates a named column with a java.io.InputStream object. |
boolean |
wasNull()
Determines whether the last column read was null. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public boolean absolute(int row) throws java.sql.SQLException
absolute
in interface java.sql.ResultSet
row
- int - the new row position for the cursor
java.sql.SQLException
- - thrown if row is 0ResultSet.absolute(int)
public void afterLast() throws java.sql.SQLException
afterLast
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.afterLast()
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.beforeFirst()
public void cancelRowUpdates() throws java.sql.SQLException
cancelRowUpdates
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.cancelRowUpdates()
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.clearWarnings()
public void close() throws java.sql.SQLException
close
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.close()
public void deleteRow() throws java.sql.SQLException
deleteRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.deleteRow()
public int findColumn(java.lang.String name) throws java.sql.SQLException
findColumn
in interface java.sql.ResultSet
name
- java.lang.String - the name of the column desired
java.sql.SQLException
- thrown if a bad name is passedResultSet.findColumn(java.lang.String)
public boolean first() throws java.sql.SQLException
first
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.first()
public java.sql.Array getArray(java.lang.String columnName) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
columnName
- String - name of the column
java.sql.SQLException
ResultSet.getArray(int)
public java.sql.Array getArray(int columnIndex) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
columnIndex
- int - index of the column
java.sql.SQLException
ResultSet.getArray(int)
public java.io.InputStream getAsciiStream(int columnIndex) throws java.sql.SQLException
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a get method implicitly closes the stream. . Also, a stream may return 0 for available() whether there is data available or not.
getAsciiStream
in interface java.sql.ResultSet
columnIndex
- int - the first column is 1, the second is 2, ...
java.sql.SQLException
- if a database-access error occurs.ResultSet.getAsciiStream(int)
public java.io.InputStream getAsciiStream(java.lang.String columnName) throws java.sql.SQLException
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a get method implicitly closes the stream.
getAsciiStream
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column
java.sql.SQLException
ResultSet.getAsciiStream(int)
public java.math.BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
columnIndex
- int - index of the columnscale
- int - the number of digits to the right of the decimal
java.sql.SQLException
ResultSet.getBigDecimal(int, int)
public java.math.BigDecimal getBigDecimal(java.lang.String columnName, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
columnName
- int - index of the columnscale
- int - the number of digits to the right of the decimal
java.sql.SQLException
ResultSet.getBigDecimal(int, int)
public java.math.BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get. The first column is 1, the second is 2, ...
java.sql.SQLException
ResultSet.getBigDecimal(int, int)
public java.math.BigDecimal getBigDecimal(java.lang.String columnName) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get.
java.sql.SQLException
public java.io.InputStream getBinaryStream(int columnIndex) throws java.sql.SQLException
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a get method implicitly closes the stream. Also, a stream may return 0 for available() whether there is data available or not.
getBinaryStream
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get. The first column is 1, the second is 2, ...
java.sql.SQLException
- if a database-access error occurs.ResultSet.getBinaryStream(int)
public java.io.InputStream getBinaryStream(java.lang.String columnName) throws java.sql.SQLException
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a get method implicitly closes the stream.
getBinaryStream
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column to get
java.sql.SQLException
ResultSet.getBinaryStream(int)
public java.sql.Blob getBlob(java.lang.String columnName) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
columnName
- int - name of the column
java.sql.SQLException
ResultSet.getArray(int)
public java.sql.Blob getBlob(int columnIndex) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
columnIndex
- int - index of the column
java.sql.SQLException
ResultSet.getArray(int)
public boolean getBoolean(int columnIndex) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getBoolean(int)
public boolean getBoolean(java.lang.String columnName) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getBoolean(int)
public byte getByte(int columnIndex) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get. The first column is 1, the second is 2, ...
java.sql.SQLException
ResultSet.getByte(int)
public byte getByte(java.lang.String columnName) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get.
java.sql.SQLException
ResultSet.getByte(int)
public byte[] getBytes(int columnIndex) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getBytes(int)
public byte[] getBytes(java.lang.String columnName) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column to get
java.sql.SQLException
- if a database-access error occurs.ResultSet.getBytes(int)
public java.io.Reader getCharacterStream(int columnIndex) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getCharacterStream(int)
public java.io.Reader getCharacterStream(java.lang.String columnName) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column to get
java.sql.SQLException
- if a database-access error occurs.ResultSet.getCharacterStream(int)
public java.sql.Clob getClob(java.lang.String columnName) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
columnName
- int - name of the column
java.sql.SQLException
ResultSet.getArray(int)
public java.sql.Clob getClob(int columnIndex) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
columnIndex
- int - index of the column
java.sql.SQLException
ResultSet.getArray(int)
public int getConcurrency() throws java.sql.SQLException
getConcurrency
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getConcurrency()
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getCursorName()
public java.sql.Date getDate(int columnIndex) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
columnIndex
- int - the column being retrieved
java.sql.SQLException
ResultSet.getDate(int)
public java.sql.Date getDate(java.lang.String columnName) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column to get
java.sql.SQLException
ResultSet.getDate(int)
public java.sql.Date getDate(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
columnIndex
- int - the column being retrievedcal
- Calendar - the Calendar object used to construct the Time object
java.sql.SQLException
ResultSet.getDate(int)
public java.sql.Date getDate(java.lang.String columnName, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
columnName
- java.lang.String - name of the column to getcal
- Calendar - the Calendar object used to construct the Time object
java.sql.SQLException
ResultSet.getDate(int)
public double getDouble(int columnIndex) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getDouble(int)
public double getDouble(java.lang.String columnName) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getDouble(int)
public int getFetchDirection() throws java.sql.SQLException
getFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getFetchDirection()
public int getFetchSize() throws java.sql.SQLException
getFetchSize
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getFetchSize()
public float getFloat(int columnIndex) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getFloat(int)
public float getFloat(java.lang.String columnName) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getFloat(int)
public int getInt(int columnIndex) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getInt(int)
public int getInt(java.lang.String columnName) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getInt(int)
public long getLong(int column) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
column
- int - the index of the column to get
java.sql.SQLException
ResultSet.getLong(int)
public long getLong(java.lang.String columnName) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getLong(int)
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface java.sql.ResultSet
java.sql.SQLException
- thrown on error getting meta-dataResultSet.getMetaData()
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getObject(int)
public java.lang.Object getObject(java.lang.String columnName) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getObject(int)
public java.lang.Object getObject(java.lang.String columnName, java.util.Map map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to getmap
- Map - the type map to use
java.sql.SQLException
ResultSet.getObject(int)
public java.lang.Object getObject(int columnIndex, java.util.Map map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to getmap
- Map - the type map to use
java.sql.SQLException
ResultSet.getObject(int)
public java.sql.Ref getRef(java.lang.String colName) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
colName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getRef(int)
public java.sql.Ref getRef(int columnIndex) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getRef(int)
public int getRow() throws java.sql.SQLException
getRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getRow()
public int getRowCount()
public short getShort(int columnIndex) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getShort(int)
public short getShort(java.lang.String columnName) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get
java.sql.SQLException
ResultSet.getShort(int)
public java.sql.Statement getStatement() throws java.sql.SQLException
getStatement
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getStatement()
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getString(int)
public java.lang.String getString(java.lang.String columnName) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
columnName
- int - the index of the column to get
java.sql.SQLException
ResultSet.getString(int)
public java.sql.Time getTime(int columnIndex) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getTime(int)
public java.sql.Time getTime(java.lang.String columnName) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
columnName
- int - the index of the column to get
java.sql.SQLException
ResultSet.getTime(int)
public java.sql.Time getTime(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to getcal
- Calendar - the Calendar object used to construct the Time object
java.sql.SQLException
ResultSet.getTime(int)
public java.sql.Time getTime(java.lang.String columnName, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
columnName
- int - the index of the column to getcal
- Calendar - the Calendar object used to construct the Time object
java.sql.SQLException
ResultSet.getTime(int)
public java.sql.Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get
java.sql.SQLException
ResultSet.getTimestamp(int)
public java.sql.Timestamp getTimestamp(java.lang.String columnName) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
columnName
- int - the index of the column to get
java.sql.SQLException
ResultSet.getTimestamp(int)
public java.sql.Timestamp getTimestamp(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to getcal
- Calendar - the Calendar object used to construct the timestamp
java.sql.SQLException
ResultSet.getTimestamp(int)
public java.sql.Timestamp getTimestamp(java.lang.String columnName, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
columnName
- int - the index of the column to getcal
- Calendar - the Calendar object used to construct the timestamp
java.sql.SQLException
ResultSet.getTimestamp(int)
public int getType() throws java.sql.SQLException
getType
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getType()
public java.io.InputStream getUnicodeStream(int columnIndex) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
columnIndex
- int - the index of the column to get.
The first column is 1, the second is 2, ...
java.sql.SQLException
- if a database-access error occurs.ResultSet.getUnicodeStream(int)
public java.io.InputStream getUnicodeStream(java.lang.String columnName) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
columnName
- java.lang.String - the name of the column to get.
java.sql.SQLException
- if a database-access error occurs.ResultSet.getUnicodeStream(int)
public java.net.URL getURL(int columnIndex) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.getURL(int)
public java.net.URL getURL(java.lang.String columnName) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.getURL(String)
public java.lang.Object getValueAt(int aRow, int aColumn) throws java.sql.SQLException
aRow
- intaColumn
- int
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface java.sql.ResultSet
java.sql.SQLException
Statement.getWarnings()
public void insertRow() throws java.sql.SQLException
insertRow
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown because ApptrieveResultSet objects
are read-only.ResultSet.insertRow()
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isAfterLast()
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isBeforeFirst()
public boolean isFirst() throws java.sql.SQLException
isFirst
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isFirst()
public boolean isLast() throws java.sql.SQLException
isLast
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isLast()
public boolean last() throws java.sql.SQLException
last
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.last()
public void moveToCurrentRow() throws java.sql.SQLException
moveToCurrentRow
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.moveToCurrentRow()
public void moveToInsertRow() throws java.sql.SQLException
moveToInsertRow
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.moveToInsertRow()
public boolean next() throws java.sql.SQLException
next
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.next()
public boolean previous() throws java.sql.SQLException
previous
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.previous()
public void refreshRow() throws java.sql.SQLException
refreshRow
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since ApptrieveResultSet objects have
concurrency CONCUR_READ_ONLY.ResultSet.refreshRow()
public boolean relative(int rows) throws java.sql.SQLException
relative
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.relative(int)
public boolean rowDeleted() throws java.sql.SQLException
rowDeleted
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since ApptrieveResultSet objects have
concurrency CONCUR_READ_ONLY.ResultSet.rowDeleted()
public boolean rowInserted() throws java.sql.SQLException
rowInserted
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since ApptrieveResultSet objects have
concurrency CONCUR_READ_ONLY.ResultSet.rowInserted()
public boolean rowUpdated() throws java.sql.SQLException
rowUpdated
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since ApptrieveResultSet objects have
concurrency CONCUR_READ_ONLY.ResultSet.rowInserted()
public void setFetchDirection(int direction) throws java.sql.SQLException
setFetchDirection
in interface java.sql.ResultSet
direction
- int - the new fetch direction
java.sql.SQLException
ResultSet.setFetchDirection(int)
public void setFetchSize(int rows) throws java.sql.SQLException
setFetchSize
in interface java.sql.ResultSet
rows
- int - the maximum number of rows to fetch
java.sql.SQLException
ResultSet.setFetchSize(int)
public java.lang.String toString()
toString
in class java.lang.Object
public void updateArray(int columnIndex, java.sql.Array x) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateArray(int, Array)
public void updateArray(java.lang.String columnName, java.sql.Array x) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateArray(String, Array)
public void updateAsciiStream(int columnIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateAsciiStream(int, java.io.InputStream, int)
public void updateAsciiStream(java.lang.String columnName, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateAsciiStream(int, java.io.InputStream, int)
public void updateBigDecimal(int columnIndex, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBigDecimal(int, java.math.BigDecimal)
public void updateBigDecimal(java.lang.String columnName, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBigDecimal(int, java.math.BigDecimal)
public void updateBinaryStream(int columnIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBinaryStream(int, java.io.InputStream, int)
public void updateBinaryStream(java.lang.String columnName, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBinaryStream(int, java.io.InputStream, int)
public void updateBlob(int columnIndex, java.sql.Blob x) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateBlob(int, Blob)
public void updateBlob(java.lang.String columnName, java.sql.Blob x) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateBlob(String, Blob)
public void updateBoolean(int columnIndex, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBoolean(int, boolean)
public void updateBoolean(java.lang.String columnName, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBoolean(int, boolean)
public void updateByte(int columnIndex, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateByte(int, byte)
public void updateByte(java.lang.String columnName, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateByte(int, byte)
public void updateBytes(int columnIndex, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBytes(int, byte[])
public void updateBytes(java.lang.String columnName, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateBytes(int, byte[])
public void updateCharacterStream(int columnIndex, java.io.Reader x, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateCharacterStream(int, java.io.Reader, int)
public void updateCharacterStream(java.lang.String columnName, java.io.Reader reader, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateCharacterStream(int, java.io.Reader, int)
public void updateClob(int columnIndex, java.sql.Clob x) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateClob(int, Clob)
public void updateClob(java.lang.String columnName, java.sql.Clob x) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateClob(String, Clob)
public void updateDate(int columnIndex, java.sql.Date x) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateDate(int, java.sql.Date)
public void updateDate(java.lang.String columnName, java.sql.Date x) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateDate(int, java.sql.Date)
public void updateDouble(int columnIndex, double x) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateDouble(int, double)
public void updateDouble(java.lang.String columnName, double x) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateDouble(int, double)
public void updateFloat(int columnIndex, float x) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateFloat(int, float)
public void updateFloat(java.lang.String columnName, float x) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateFloat(int, float)
public void updateInt(int columnIndex, int x) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateInt(int, int)
public void updateInt(java.lang.String columnName, int x) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateInt(int, int)
public void updateLong(int columnIndex, long x) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateLong(int, long)
public void updateLong(java.lang.String columnName, long x) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateLong(int, long)
public void updateNull(int columnIndex) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateNull(int)
public void updateNull(java.lang.String columnName) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateNull(int)
public void updateObject(int columnIndex, java.lang.Object x, int scale) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateObject(int, java.lang.Object, int)
public void updateObject(int columnIndex, java.lang.Object x) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateObject(int, java.lang.Object, int)
public void updateObject(java.lang.String columnName, java.lang.Object x, int scale) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateObject(int, java.lang.Object, int)
public void updateObject(java.lang.String columnName, java.lang.Object x) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateObject(int, java.lang.Object, int)
public void updateRef(int columnIndex, java.sql.Ref x) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateRef(int, Ref)
public void updateRef(java.lang.String columnName, java.sql.Ref x) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrownResultSet.updateRef(String, Ref)
public void updateRow() throws java.sql.SQLException
updateRow
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateRow()
public void updateShort(int columnIndex, short x) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateShort(int, short)
public void updateShort(java.lang.String columnName, short x) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateShort(int, short)
public void updateString(int columnIndex, java.lang.String x) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateString(int, java.lang.String)
public void updateString(java.lang.String columnName, java.lang.String x) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateString(int, java.lang.String)
public void updateTime(int columnIndex, java.sql.Time x) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateTime(int, java.sql.Time)
public void updateTime(java.lang.String columnName, java.sql.Time x) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateTime(int, java.sql.Time)
public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateTimestamp(int, java.sql.Timestamp)
public void updateTimestamp(java.lang.String columnName, java.sql.Timestamp x) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
- - always thrown since the ResultSet has a concurrency
type of CONCUR_READ_ONLY.ResultSet.updateTimestamp(int, java.sql.Timestamp)
public boolean wasNull() throws java.sql.SQLException
wasNull
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.wasNull()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |