
RowSet
The JDBC API
|
123
void setUrl(String url)
Sets the database URL used to establish a database
connection.
void setUsername(String name)
Sets the username used to establish a database connection.
Methods inherited from java.sql.ResultSet
boolean absolute(int row)
void afterLast( )
void beforeFirst( )
void cancelRowUpdates( )
void clearWarnings( )
void close( )
void deleteRow( )
int findColumn(String columnName)
boolean first( )
Array getArray(int columnIndex)
Array getArray(String columnName)
InputStream getAsciiStream(int columnIndex)
InputStream getAsciiStream(String columnName)
BigDecimal getBigDecimal(int columnIndex)
BigDecimal getBigDecimal(String columnName)
InputStream getBinaryStream(int columnIndex)
InputStream getBinaryStream(String columnName)
Blob getBlob(int columnIndex)
Blob getBlob(String columnName)
boolean getBoolean(int columnIndex)
boolean getBoolean(String columnName)
byte getByte(int columnIndex)
byte getByte(String columnName)
byte[ ] getBytes(int columnIndex)
byte[ ] getBytes(String columnName)
Returns the value as a byte array
Reader getCharacterStream(int columnIndex)
Reader getCharacterStream(String columnName)
Clob getClob(int columnIndex)
Clob getClob(String columnName)
int getConcurrency( )
String getCursorName( )
Date getDate(int columnIndex)
Date getDate(String columnName)
Date getDate(int columnIndex, Calendar calendar)
Date getDate(String columnName, Calendar calendar)
double getDouble(int ...