Example usage for Java javax.sql.rowset JdbcRowSet fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | absolute(int row) Moves the cursor to the given row number in this ResultSet object. |
void | addRowSetListener(RowSetListener listener) Registers the given listener so that it will be notified of events that occur on this RowSet object. |
void | deleteRow() Deletes the current row from this ResultSet object and from the underlying database. |
void | execute() Fills this RowSet object with data. |
int | getInt(int columnIndex) Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language. |
ResultSetMetaData | getMetaData() Retrieves the number, types and properties of this ResultSet object's columns. |
Object | getObject(int columnIndex) Gets the value of the designated column in the current row of this |
String | getString(int columnIndex) Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language. |
void | insertRow() Inserts the contents of the insert row into this ResultSet object and into the database. |
boolean | last() Moves the cursor to the last row in this ResultSet object. |
void | moveToInsertRow() Moves the cursor to the insert row. |
boolean | next() Moves the cursor forward one row from its current position. |
void | setCommand(String cmd) Sets this RowSet object's command property to the given SQL query. |
void | setPassword(String password) Sets the database password for this RowSet object to the given String . |
void | setType(int type) Sets the type of this RowSet object to the given type. |
void | setUrl(String url) Sets the URL this RowSet object will use when it uses the DriverManager to create a connection. |
void | setUsername(String name) Sets the username property for this RowSet object to the given String . |
void | updateFloat(int columnIndex, float x) Updates the designated column with a float value. |
void | updateInt(int columnIndex, int x) Updates the designated column with an int value. |
void | updateObject(int columnIndex, Object x) Updates the designated column with an Object value. |
void | updateRow() Updates the underlying database with the new contents of the current row of this ResultSet object. |
void | updateString(int columnIndex, String x) Updates the designated column with a String value. |