Generated by
JDiff

Interface java.sql.ResultSet

Documentation changed from old to new.

Changed Methods
boolean absolute(int) Documentation changed from old to new.
Moves the cursor to the given row number in this ResultSet object.
void afterLast() Documentation changed from old to new.
Moves the cursor to the end of this ResultSet object just after the last row.
void beforeFirst() Documentation changed from old to new.
Moves the cursor to the front of this ResultSet object just before the first row.
void cancelRowUpdates() Documentation changed from old to new.
Cancels the updates made to the current row in this ResultSet object.
void clearWarnings() Documentation changed from old to new.
Clears all warnings reported on this ResultSet object.
void close() Documentation changed from old to new.
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
void deleteRow() Documentation changed from old to new.
Deletes the current row from this ResultSet object and from the underlying database.
int findColumn(String) Documentation changed from old to new.
Maps the given ResultSet column name to its ResultSet column index.
boolean first() Documentation changed from old to new.
Moves the cursor to the first row in this ResultSet object.
int getConcurrency() Documentation changed from old to new.
Returns the concurrency mode of this ResultSet object.
String getCursorName() Documentation changed from old to new.
Gets the name of the SQL cursor used by this ResultSet object.
int getFetchDirection() Documentation changed from old to new.
Returns the fetch direction for this ResultSet object.
int getFetchSize() Documentation changed from old to new.
Returns the fetch size for this ResultSet object.
ResultSetMetaData getMetaData() Documentation changed from old to new.
Retrieves the number types and properties of this ResultSet object's columns.
int getRow() Documentation changed from old to new.
Retrieves the current row number.
Statement getStatement() Documentation changed from old to new.
Returns the Statement object that produced this ResultSet object.
int getType() Documentation changed from old to new.
Returns the type of this ResultSet object.
SQLWarning getWarnings() Documentation changed from old to new.
Returns the first warning reported by calls on this ResultSet object.
void insertRow() Documentation changed from old to new.
Inserts the contents of the insert row into this ResultSet objaect and into the database.
boolean isAfterLast() Documentation changed from old to new.
Indicates whether the cursor is after the last row in this ResultSet object.
boolean isBeforeFirst() Documentation changed from old to new.
Indicates whether the cursor is before the first row in this ResultSet object.
boolean isFirst() Documentation changed from old to new.
Indicates whether the cursor is on the first row of this ResultSet object.
boolean isLast() Documentation changed from old to new.
Indicates whether the cursor is on the last row of this ResultSet object.
boolean last() Documentation changed from old to new.
Moves the cursor to the last row in this ResultSet object.
void moveToCurrentRow() Documentation changed from old to new.
Moves the cursor to the remembered cursor position usually the current row.
void moveToInsertRow() Documentation changed from old to new.
Moves the cursor to the insert row.
boolean next() Documentation changed from old to new.
Moves the cursor down one row from its current position.
boolean previous() Documentation changed from old to new.
Moves the cursor to the previous row in this ResultSet object.
void refreshRow() Documentation changed from old to new.
Refreshes the current row with its most recent value in the database.
boolean relative(int) Documentation changed from old to new.
Moves the cursor a relative number of rows either positive or negative.
boolean rowDeleted() Documentation changed from old to new.
Indicates whether a row has been deleted.
boolean rowInserted() Documentation changed from old to new.
Indicates whether the current row has had an insertion.
boolean rowUpdated() Documentation changed from old to new.
Indicates whether the current row has been updated.
void setFetchDirection(int) Documentation changed from old to new.
Gives a hint as to the direction in which the rows in this ResultSet object will be processed.
void setFetchSize(int) Documentation changed from old to new.
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this ResultSet object.
void updateRow() Documentation changed from old to new.
Updates the underlying database with the new contents of the current row of this ResultSet object.
boolean wasNull() Documentation changed from old to new.
Reports whether the last column read had a value of SQL NULL.
Array getArray(int) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
Array getArray(String) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
InputStream getAsciiStream(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
InputStream getAsciiStream(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
BigDecimal getBigDecimal(int, int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.BigDecimal in the Java programming language.
BigDecimal getBigDecimal(String, int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal in the Java programming language.
BigDecimal getBigDecimal(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
BigDecimal getBigDecimal(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
InputStream getBinaryStream(int) Documentation changed from old to new.
Gets the value of a column in the current row as a stream of Gets the value of the designated column in the current row of this ResultSet object as a binary stream of uninterpreted bytes.
InputStream getBinaryStream(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
Blob getBlob(int) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
Blob getBlob(String) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
boolean getBoolean(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
boolean getBoolean(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
byte getByte(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
byte getByte(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
byte[] getBytes(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
byte[] getBytes(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
Reader getCharacterStream(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
Reader getCharacterStream(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
Clob getClob(int) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
Clob getClob(String) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
Date getDate(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
Date getDate(int, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
Date getDate(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
Date getDate(String, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
double getDouble(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
double getDouble(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
float getFloat(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
float getFloat(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
int getInt(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
int getInt(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
long getLong(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
long getLong(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
Object getObject(int) Documentation changed from old to new.

Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

Object getObject(int, Map) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
Object getObject(String) Documentation changed from old to new.

Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

Object getObject(String, Map) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
Ref getRef(int) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
Ref getRef(String) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
short getShort(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
short getShort(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
String getString(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
String getString(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
Time getTime(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
Time getTime(int, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
Time getTime(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
Time getTime(String, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
Timestamp getTimestamp(int) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
Timestamp getTimestamp(int, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
Timestamp getTimestamp(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object.
Timestamp getTimestamp(String, Calendar) Documentation changed from old to new.
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
InputStream getUnicodeStream(int) Documentation changed from old to new.
use getCharacterStream in place of getUnicodeStream
InputStream getUnicodeStream(String) Documentation changed from old to new.
Gets the value of the designated column in the current row of this ResultSet object as a stream of Unicode characters.
void updateAsciiStream(int, InputStream, int) Documentation changed from old to new.
Updates the designated column with an ascii stream value.
void updateAsciiStream(String, InputStream, int) Documentation changed from old to new.
Updates the designated column with an ascii stream value.
void updateBigDecimal(int, BigDecimal) Documentation changed from old to new.
Updates the designated column with a java.math.BigDecimal value.
void updateBigDecimal(String, BigDecimal) Documentation changed from old to new.
Updates the designated column with a java.sql.BigDecimal value.
void updateBinaryStream(int, InputStream, int) Documentation changed from old to new.
Updates the designated column with a binary stream value.
void updateBinaryStream(String, InputStream, int) Documentation changed from old to new.
Updates the designated column with a binary stream value.
void updateBoolean(int, boolean) Documentation changed from old to new.
Updates the designated column with a boolean value.
void updateBoolean(String, boolean) Documentation changed from old to new.
Updates the designated column with a boolean value.
void updateByte(int, byte) Documentation changed from old to new.
Updates the designated column with a byte value.
void updateByte(String, byte) Documentation changed from old to new.
Updates the designated column with a byte value.
void updateBytes(int, byte[]) Documentation changed from old to new.
Updates the designated column with a byte array value.
void updateBytes(String, byte[]) Documentation changed from old to new.
Updates the designated column with a boolean value.
void updateCharacterStream(int, Reader, int) Documentation changed from old to new.
Updates the designated column with a character stream value.
void updateCharacterStream(String, Reader, int) Documentation changed from old to new.
Updates the designated column with a character stream value.
void updateDate(int, Date) Documentation changed from old to new.
Updates the designated column with a java.sql.Date value.
void updateDate(String, Date) Documentation changed from old to new.
Updates the designated column with a java.sql.Date value.
void updateDouble(int, double) Documentation changed from old to new.
Updates the designated column with a double value.
void updateDouble(String, double) Documentation changed from old to new.
Updates the designated column with a double value.
void updateFloat(int, float) Documentation changed from old to new.
Updates the designated column with a float value.
void updateFloat(String, float) Documentation changed from old to new.
Updates the designated column with a float value.
void updateInt(int, int) Documentation changed from old to new.
Updates the designated column with an int value.
void updateInt(String, int) Documentation changed from old to new.
Updates the designated column with an int value.
void updateLong(int, long) Documentation changed from old to new.
Updates the designated column with a long value.
void updateLong(String, long) Documentation changed from old to new.
Updates the designated column with a long value.
void updateNull(int) Documentation changed from old to new.
Gives a nullable column a null value.
void updateNull(String) Documentation changed from old to new.
Updates the designated column with a null value.
void updateObject(int, Object) Documentation changed from old to new.
Updates the designated column with an Object value.
void updateObject(int, Object, int) Documentation changed from old to new.
Updates the designated column with an Object value.
void updateObject(String, Object) Documentation changed from old to new.
Updates the designated column with an Object value.
void updateObject(String, Object, int) Documentation changed from old to new.
Updates the designated column with an Object value.
void updateShort(int, short) Documentation changed from old to new.
Updates the designated column with a short value.
void updateShort(String, short) Documentation changed from old to new.
Updates the designated column with a short value.
void updateString(int, String) Documentation changed from old to new.
Updates the designated column with a String value.
void updateString(String, String) Documentation changed from old to new.
Updates the designated column with a String value.
void updateTime(int, Time) Documentation changed from old to new.
Updates the designated column with a java.sql.Time value.
void updateTime(String, Time) Documentation changed from old to new.
Updates the designated column with a java.sql.Time value.
void updateTimestamp(int, Timestamp) Documentation changed from old to new.
Updates the designated column with a java.sql.Timestamp value.
void updateTimestamp(String, Timestamp) Documentation changed from old to new.
Updates the designated column with a java.sql.Timestamp value.
 

Changed Fields
int CONCUR_READ_ONLY Documentation changed from old to new.
The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
int CONCUR_UPDATABLE Documentation changed from old to new.
The constant indicating the concurrency mode for a ResultSet object that may be updated.
int FETCH_FORWARD Documentation changed from old to new.
The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.
int FETCH_REVERSE Documentation changed from old to new.
The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.
int FETCH_UNKNOWN Documentation changed from old to new.
The constant indicating that the order in which rows in a result set will be processed is unknown.
int TYPE_FORWARD_ONLY Documentation changed from old to new.
The constant indicating the type for a ResultSet object whose cursor may move only forward.
int TYPE_SCROLL_INSENSITIVE Documentation changed from old to new.
The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes made by others.
int TYPE_SCROLL_SENSITIVE Documentation changed from old to new.
The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes made by others.