|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
Base interface for Result Sets returned from a Prepared Statement execution.
| Method Summary | |
boolean |
absolute(int index)
Moves the cursor to the specified row of the result set. |
void |
afterLast()
Moves the cursor after the last row of the result set. |
boolean |
available()
Determines whether data for this particular Result Set is available after an execute. |
void |
beforeFirst()
Moves the cursor before the first row of the result set. |
void |
clearWarnings()
Clears any warnings reported on this object. |
void |
close()
Immediately releases a ResultSet object's resources. |
void |
deleteRow()
Deletes the current row from the result set and the underlying database. |
int |
findColumn(java.lang.String index)
Returns the column index for the named column in the result set. |
boolean |
first()
Moves the cursor to the first row of the result set. |
java.sql.Array |
getArray(int index)
Gets the Array value of the specified column. |
java.sql.Array |
getArray(java.lang.String index)
Gets the Array value of the specified column. |
java.io.InputStream |
getAsciiStream(int index)
Retrieves the value of the specified column value as a stream of ASCII characters. |
java.io.InputStream |
getAsciiStream(java.lang.String index)
Retrieves the value of the specified column as a stream of ASCII characters. |
java.math.BigDecimal |
getBigDecimal(int index)
Gets the decimal value of the specified column. |
java.math.BigDecimal |
getBigDecimal(java.lang.String index)
Gets the decimal value of the specified column. |
java.io.InputStream |
getBinaryStream(int index)
Retrieves the value of the specified column as a stream of un-interpreted bytes. |
java.io.InputStream |
getBinaryStream(java.lang.String index)
Retrieves the value of the specified column as a stream of un-interpreted bytes. |
java.sql.Blob |
getBlob(int index)
Gets the Blob value of the specified column. |
java.sql.Blob |
getBlob(java.lang.String index)
Gets the Blob value of the specified column. |
boolean |
getBoolean(int index)
Gets the boolean value of the specified column. |
boolean |
getBoolean(java.lang.String index)
Gets the boolean value of the specified column. |
byte |
getByte(int index)
Gets the byte value of the specified column. |
byte |
getByte(java.lang.String index)
Gets the byte value of the specified column. |
byte[] |
getBytes(int index)
Gets the byte array value of the specified column. |
byte[] |
getBytes(java.lang.String index)
Gets the byte array value of the specified column. |
java.io.Reader |
getCharacterStream(int index)
Retrieves the value of the specified column as a Reader object. |
java.io.Reader |
getCharacterStream(java.lang.String index)
Retrieves the value of the specified column as a Reader object. |
java.sql.Clob |
getClob(int index)
Gets the Clob value of the specified column. |
java.sql.Clob |
getClob(java.lang.String index)
Gets the Clob value of the specified column. |
int |
getConcurrency()
Gets the concurrency mode for this ResultSet object. |
java.lang.String |
getCursorName()
Retrieves the name for the cursor associated with this ResultSet object. |
java.sql.Date |
getDate(int index)
Gets the date value of the specified column. |
java.sql.Date |
getDate(int index,
java.util.Calendar calendar)
Gets the date value of the specified column using the time zone from calendar. |
java.sql.Date |
getDate(java.lang.String index)
Gets the date value of the specified column. |
java.sql.Date |
getDate(java.lang.String index,
java.util.Calendar calendar)
Gets the date value of the specified column using the time zone from calendar. |
double |
getDouble(int index)
Gets the double value of the specified column. |
double |
getDouble(java.lang.String index)
Gets the double value of the specified column. |
int |
getFetchDirection()
Gets the direction suggested to the driver as the row fetch direction. |
int |
getFetchSize()
Gets the number of rows to fetch suggested to the driver. |
float |
getFloat(int index)
Gets the float value of the specified column. |
float |
getFloat(java.lang.String index)
Gets the float value of the specified column. |
int |
getInt(int index)
Gets the integer value of the specified column. |
int |
getInt(java.lang.String index)
Gets the integer value of the specified column. |
long |
getLong(int index)
Gets the long value of the specified column. |
long |
getLong(java.lang.String index)
Gets the long value of the specified column. |
java.sql.ResultSetMetaData |
getMetaData()
Retrieves a ResultSetMetaData object that contains ResultSet proprieties. |
java.lang.Object |
getObject(int index)
Gets the object value of the specified column. |
java.lang.Object |
getObject(int index,
java.util.Map map)
Gets the object value of the specified column using the given type map. |
java.lang.Object |
getObject(java.lang.String index)
Gets the object value of the specified column. |
java.lang.Object |
getObject(java.lang.String index,
java.util.Map map)
Gets the object value of the specified column using the given type map. |
java.sql.Ref |
getRef(int index)
Gets the Ref value of the specified column. |
java.sql.Ref |
getRef(java.lang.String index)
Gets the Ref value of the specified column. |
int |
getRow()
Retrieves the current row number in the result set. |
short |
getShort(int index)
Gets the short value of the specified column. |
short |
getShort(java.lang.String index)
Gets the short value of the specified column. |
java.lang.String |
getString(int index)
Gets the string value of the specified column. |
java.lang.String |
getString(java.lang.String index)
Gets the string value of the specified column. |
java.sql.Time |
getTime(int index)
Gets the time value of the specified column. |
java.sql.Time |
getTime(int index,
java.util.Calendar calendar)
Gets the time value of the specified column using the time zone from calendar. |
java.sql.Time |
getTime(java.lang.String index)
Gets the time value of the specified column. |
java.sql.Time |
getTime(java.lang.String index,
java.util.Calendar calendar)
Gets the time value of the specified column using the time zone from calendar. |
java.sql.Timestamp |
getTimestamp(int index)
Gets the timestamp value of the specified column. |
java.sql.Timestamp |
getTimestamp(int index,
java.util.Calendar calendar)
Gets the timestamp value of the specified column using the time zone from calendar. |
java.sql.Timestamp |
getTimestamp(java.lang.String index)
Gets the timestamp value of the specified column. |
java.sql.Timestamp |
getTimestamp(java.lang.String index,
java.util.Calendar calendar)
Gets the timestamp value of the specified column using the time zone from calendar. |
int |
getType()
Retrieves the scroll type of cursor associated with the result set. |
java.sql.SQLWarning |
getWarnings()
Gets the first SQLWarning that has been reported for this object. |
void |
insertRow()
Inserts the contents of the insert row into the result set and the database. |
boolean |
isAfterLast()
Determines whether the cursor is after the last row of the result set. |
boolean |
isBeforeFirst()
Determines whether the cursor is before the first row of the result set. |
boolean |
isFirst()
Determines whether the cursor is on the first row of the result set. |
boolean |
isLast()
Determines whether the cursor is on the last row of the result set. |
boolean |
last()
Moves the cursor to the last row of the result set. |
boolean |
next()
Moves the cursor to the next row of the result set. |
boolean |
previous()
Moves the cursor to the previous row of the result set. |
void |
refreshRow()
Replaces the values int the current row of the result set with their current values in the database. |
boolean |
relative(int index)
Moves the cursor to the specified row relative to current row of the result set. |
void |
setFetchDirection(int iDir)
Gives the driver a hint as to the row process direction. |
void |
setFetchSize(int nSize)
Gives the drivers a hint as to the number of rows that should be fetched each time. |
void |
setResultSetAgent(ResultSetAgent rsAgent)
Sets the underlying ResultSetAgent control for this Result Set. |
void |
updateAsciiStream(int index,
java.io.InputStream is,
int length)
Updates the designated column with an InputStream object of specified length. |
void |
updateAsciiStream(java.lang.String index,
java.io.InputStream is,
int length)
Updates the designated column with an InputStream object of specified length. |
void |
updateBigDecimal(int index,
java.math.BigDecimal dec)
Updates the designated column with a BigDecimal object. |
void |
updateBigDecimal(java.lang.String index,
java.math.BigDecimal dec)
Updates the designated column with a BigDecimal object. |
void |
updateBinaryStream(int index,
java.io.InputStream is,
int length)
Updates the designated column with an InputStream object of specified length. |
void |
updateBinaryStream(java.lang.String index,
java.io.InputStream is,
int length)
Updates the designated column with an InputStream object of specified length. |
void |
updateBoolean(int index,
boolean b)
Updates the designated column with a boolean value. |
void |
updateBoolean(java.lang.String index,
boolean b)
Updates the designated column with a boolean value. |
void |
updateByte(int index,
byte byt)
Updates the designated column with a byte value. |
void |
updateByte(java.lang.String index,
byte byt)
Updates the designated column with a byte value. |
void |
updateBytes(int index,
byte[] bytes)
Updates the designated column with a byte array value. |
void |
updateBytes(java.lang.String index,
byte[] bytes)
Updates the designated column with a byte array value. |
void |
updateCharacterStream(int index,
java.io.Reader rd,
int length)
Updates the designated column with a Reader object of specified length. |
void |
updateCharacterStream(java.lang.String index,
java.io.Reader rd,
int length)
Updates the designated column with a Reader object of specified length. |
void |
updateDate(int index,
java.sql.Date date)
Updates the designated column with a Date object. |
void |
updateDate(java.lang.String index,
java.sql.Date date)
Updates the designated column with a Date object. |
void |
updateDouble(int index,
double d)
Updates the designated column with a double value. |
void |
updateDouble(java.lang.String index,
double d)
Updates the designated column with a double value. |
void |
updateFloat(int index,
float f)
Updates the designated column with a float value. |
void |
updateFloat(java.lang.String index,
float f)
Updates the designated column with a float value. |
void |
updateInt(int index,
int i)
Updates the designated column with an integer value. |
void |
updateInt(java.lang.String index,
int i)
Updates the designated column with an integer value. |
void |
updateLong(int index,
long l)
Updates the designated column with a long value. |
void |
updateLong(java.lang.String index,
long l)
Updates the designated column with a long value. |
void |
updateNull(int index)
Updates the designated nullable column with a null value. |
void |
updateNull(java.lang.String index)
Updates the designated nullable column with a null value. |
void |
updateObject(int index,
java.lang.Object ob)
Updates the designated column with a Object value. |
void |
updateObject(int index,
java.lang.Object ob,
int scale)
Updates the designated column with a Object value with the specified scale. |
void |
updateObject(java.lang.String index,
java.lang.Object ob)
Updates the designated column with a Object value. |
void |
updateObject(java.lang.String index,
java.lang.Object ob,
int scale)
Updates the designated column with a Object value with the specified scale. |
void |
updateRow()
Updates the underlying database with the new contents of the current row. |
void |
updateShort(int index,
short si)
Updates the designated column with a short value. |
void |
updateShort(java.lang.String index,
short si)
Updates the designated column with a short value. |
void |
updateString(int index,
java.lang.String s)
Updates the designated column with a String object. |
void |
updateString(java.lang.String index,
java.lang.String s)
Updates the designated column with a String object. |
void |
updateTime(int index,
java.sql.Time t)
Updates the designated column with a Time object. |
void |
updateTime(java.lang.String index,
java.sql.Time t)
Updates the designated column with a Time object. |
void |
updateTimestamp(int index,
java.sql.Timestamp ts)
Updates the designated column with a Timestamp object. |
void |
updateTimestamp(java.lang.String index,
java.sql.Timestamp ts)
Updates the designated column with a Timestamp object. |
boolean |
wasNull()
Checks to see if the last value read was SQL NULL or not. |
| Method Detail |
public boolean absolute(int index)
throws java.sql.SQLException
index - column index.true if successfuljava.sql.SQLException - when SQL problems occur.
public void afterLast()
throws java.sql.SQLException
true if before first row.java.sql.SQLException - when SQL problems occur.
public boolean available()
throws java.sql.SQLException
true if data is available.java.sql.SQLException - when SQL problems occur. when SQL problems occur.
public void beforeFirst()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public void clearWarnings()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public void close()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public void deleteRow()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public int findColumn(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public boolean first()
throws java.sql.SQLException
true if successful.java.sql.SQLException - when SQL problems occur.
public java.sql.Array getArray(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Array getArray(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.io.InputStream getAsciiStream(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.io.InputStream getAsciiStream(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.math.BigDecimal getBigDecimal(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.math.BigDecimal getBigDecimal(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.io.InputStream getBinaryStream(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.io.InputStream getBinaryStream(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Blob getBlob(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Blob getBlob(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public boolean getBoolean(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public boolean getBoolean(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public byte getByte(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public byte getByte(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public byte[] getBytes(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public byte[] getBytes(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.io.Reader getCharacterStream(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.io.Reader getCharacterStream(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Clob getClob(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Clob getClob(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public int getConcurrency()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur. when SQL problems occur.
public java.lang.String getCursorName()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur.
public java.sql.Date getDate(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Date getDate(int index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column indexcalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public java.sql.Date getDate(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Date getDate(java.lang.String index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column namecalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public double getDouble(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public double getDouble(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public int getFetchDirection()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur. when SQL problems occur.
public int getFetchSize()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur. when SQL problems occur.
public float getFloat(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public float getFloat(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public int getInt(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public int getInt(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public long getLong(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public long getLong(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.ResultSetMetaData getMetaData()
throws java.sql.SQLException
ResultSetMetaData objectjava.sql.SQLException - when SQL problems occur. when SQL problems occur.
public java.lang.Object getObject(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.lang.Object getObject(int index,
java.util.Map map)
throws java.sql.SQLException
index - column indexmap - type mapjava.sql.SQLException - when SQL problems occur.
public java.lang.Object getObject(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.lang.Object getObject(java.lang.String index,
java.util.Map map)
throws java.sql.SQLException
index - column namemap - type mapjava.sql.SQLException - when SQL problems occur.
public java.sql.Ref getRef(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Ref getRef(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public int getRow()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur.
public short getShort(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public short getShort(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.lang.String getString(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.lang.String getString(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Time getTime(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Time getTime(int index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column indexcalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public java.sql.Time getTime(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Time getTime(java.lang.String index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column namecalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public java.sql.Timestamp getTimestamp(int index)
throws java.sql.SQLException
index - column indexjava.sql.SQLException - when SQL problems occur.
public java.sql.Timestamp getTimestamp(int index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column indexcalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public java.sql.Timestamp getTimestamp(java.lang.String index)
throws java.sql.SQLException
index - column namejava.sql.SQLException - when SQL problems occur.
public java.sql.Timestamp getTimestamp(java.lang.String index,
java.util.Calendar calendar)
throws java.sql.SQLException
index - column namecalendar - calendar to usejava.sql.SQLException - when SQL problems occur.
public int getType()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur.
public java.sql.SQLWarning getWarnings()
throws java.sql.SQLException
java.sql.SQLException - when SQL problems occur.
public void insertRow()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public boolean isAfterLast()
throws java.sql.SQLException
true if after last row.java.sql.SQLException - when SQL problems occur.
public boolean isBeforeFirst()
throws java.sql.SQLException
true if before first row.java.sql.SQLException - when SQL problems occur.
public boolean isFirst()
throws java.sql.SQLException
true if on first row.java.sql.SQLException - when SQL problems occur.
public boolean isLast()
throws java.sql.SQLException
true if on last row.java.sql.SQLException - when SQL problems occur.
public boolean last()
throws java.sql.SQLException
true if successful.java.sql.SQLException - when SQL problems occur.
public boolean next()
throws java.sql.SQLException
true if successful.java.sql.SQLException - when SQL problems occur.
public boolean previous()
throws java.sql.SQLException
true if successfuljava.sql.SQLException - when SQL problems occur.
public void refreshRow()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public boolean relative(int index)
throws java.sql.SQLException
index - column index.true if successful.java.sql.SQLException - when SQL problems occur.
public void setFetchDirection(int iDir)
throws java.sql.SQLException
iDir - fetch direction to usevoid - None.java.sql.SQLException - when SQL problems occur. when SQL problems occur.
public void setFetchSize(int nSize)
throws java.sql.SQLException
nSize - number of rows to fetch at a timevoid - None.java.sql.SQLException - when SQL problems occur.public void setResultSetAgent(ResultSetAgent rsAgent)
ResultSetAgent control for this Result Set.
rsAgent - the ResultSetAgent underlying control.void - None.
public void updateAsciiStream(int index,
java.io.InputStream is,
int length)
throws java.sql.SQLException
index - column index.is - an ASCII stream parameter value.length - the number of bytes to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateAsciiStream(java.lang.String index,
java.io.InputStream is,
int length)
throws java.sql.SQLException
index - column name.is - an ASCII stream parameter value.length - the number of bytes to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBigDecimal(int index,
java.math.BigDecimal dec)
throws java.sql.SQLException
index - column index.dec - a BigDecimal parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBigDecimal(java.lang.String index,
java.math.BigDecimal dec)
throws java.sql.SQLException
index - column name.dec - a BigDecimal parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBinaryStream(int index,
java.io.InputStream is,
int length)
throws java.sql.SQLException
index - column index.is - a Binary stream parameter value.length - the number of bytes to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBinaryStream(java.lang.String index,
java.io.InputStream is,
int length)
throws java.sql.SQLException
index - column name.is - a Binary stream parameter value.length - the number of bytes to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBoolean(int index,
boolean b)
throws java.sql.SQLException
index - column index.b - a boolean parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBoolean(java.lang.String index,
boolean b)
throws java.sql.SQLException
index - column name.b - a boolean parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateByte(int index,
byte byt)
throws java.sql.SQLException
index - column index.byt - a byte parameter valuevoid - None.java.sql.SQLException - when SQL problems occur.
public void updateByte(java.lang.String index,
byte byt)
throws java.sql.SQLException
index - column name.byt - a byte parameter valuevoid - None.java.sql.SQLException - when SQL problems occur.
public void updateBytes(int index,
byte[] bytes)
throws java.sql.SQLException
index - column index.bytes - a byte array parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateBytes(java.lang.String index,
byte[] bytes)
throws java.sql.SQLException
index - column name.bytes - a byte array parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateCharacterStream(int index,
java.io.Reader rd,
int length)
throws java.sql.SQLException
index - column index.rd - a Reader parameter value.length - the number of characters to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateCharacterStream(java.lang.String index,
java.io.Reader rd,
int length)
throws java.sql.SQLException
index - column index.rd - a Reader parameter value.length - the number of characters to be read from the stream.void - None.java.sql.SQLException - when SQL problems occur.
public void updateDate(int index,
java.sql.Date date)
throws java.sql.SQLException
index - column index.date - a Date parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateDate(java.lang.String index,
java.sql.Date date)
throws java.sql.SQLException
index - column name.date - a Date parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateDouble(int index,
double d)
throws java.sql.SQLException
index - column index.d - a double parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateDouble(java.lang.String index,
double d)
throws java.sql.SQLException
index - column name.d - a double parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateFloat(int index,
float f)
throws java.sql.SQLException
index - column index.f - a float parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateFloat(java.lang.String index,
float f)
throws java.sql.SQLException
index - column name.f - a float parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateInt(int index,
int i)
throws java.sql.SQLException
index - column index.i - an integer parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateInt(java.lang.String index,
int i)
throws java.sql.SQLException
index - column index.i - an integer parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateLong(int index,
long l)
throws java.sql.SQLException
index - column index.l - a long parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateLong(java.lang.String index,
long l)
throws java.sql.SQLException
index - column name.l - a long parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateNull(int index)
throws java.sql.SQLException
index - column index.void - None.java.sql.SQLException - when SQL problems occur.
public void updateNull(java.lang.String index)
throws java.sql.SQLException
index - column name.void - None.java.sql.SQLException - when SQL problems occur.
public void updateObject(int index,
java.lang.Object ob)
throws java.sql.SQLException
index - column index.ob - an Object parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateObject(int index,
java.lang.Object ob,
int scale)
throws java.sql.SQLException
index - column index.ob - an Object parameter value.scale - the desired number of digits to the right of the decimal point.void - None.java.sql.SQLException - when SQL problems occur.
public void updateObject(java.lang.String index,
java.lang.Object ob)
throws java.sql.SQLException
index - column name.ob - an Object parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateObject(java.lang.String index,
java.lang.Object ob,
int scale)
throws java.sql.SQLException
index - column name.ob - an Object parameter value.scale - the desired number of digits to the right of the decimal point.void - None.java.sql.SQLException - when SQL problems occur.
public void updateRow()
throws java.sql.SQLException
void - None.java.sql.SQLException - when SQL problems occur.
public void updateShort(int index,
short si)
throws java.sql.SQLException
index - column index.si - a short parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateShort(java.lang.String index,
short si)
throws java.sql.SQLException
index - column name.si - a short parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateString(int index,
java.lang.String s)
throws java.sql.SQLException
index - column index.s - a String parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateString(java.lang.String index,
java.lang.String s)
throws java.sql.SQLException
index - column name.s - a String parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateTime(int index,
java.sql.Time t)
throws java.sql.SQLException
index - column index.t - a Time parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateTime(java.lang.String index,
java.sql.Time t)
throws java.sql.SQLException
index - column name.t - a Time parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateTimestamp(int index,
java.sql.Timestamp ts)
throws java.sql.SQLException
index - column index.ts - a Timestamp parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public void updateTimestamp(java.lang.String index,
java.sql.Timestamp ts)
throws java.sql.SQLException
index - column name.ts - a Timestamp parameter value.void - None.java.sql.SQLException - when SQL problems occur.
public boolean wasNull()
throws java.sql.SQLException
true if SQL NULLjava.sql.SQLException - when SQL problems occur.
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
Copyright 2004 by SeeBeyond Technology Corporation. All Rights Reserved.