Java javax.sql.rowset JdbcRowSet fields, constructors, methods, implement or subclass

Example usage for Java javax.sql.rowset JdbcRowSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.sql.rowset JdbcRowSet.

The text is from its open source code.

Implementation

javax.sql.rowset.JdbcRowSet has the following implementations.
Click this link to see all its implementation.

Method

booleanabsolute(int row)
Moves the cursor to the given row number in this ResultSet object.
voidaddRowSetListener(RowSetListener listener)
Registers the given listener so that it will be notified of events that occur on this RowSet object.
voiddeleteRow()
Deletes the current row from this ResultSet object and from the underlying database.
voidexecute()
Fills this RowSet object with data.
intgetInt(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.
ResultSetMetaDatagetMetaData()
Retrieves the number, types and properties of this ResultSet object's columns.
ObjectgetObject(int columnIndex)

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

StringgetString(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.
voidinsertRow()
Inserts the contents of the insert row into this ResultSet object and into the database.
booleanlast()
Moves the cursor to the last row in this ResultSet object.
voidmoveToInsertRow()
Moves the cursor to the insert row.
booleannext()
Moves the cursor forward one row from its current position.
voidsetCommand(String cmd)
Sets this RowSet object's command property to the given SQL query.
voidsetPassword(String password)
Sets the database password for this RowSet object to the given String.
voidsetType(int type)
Sets the type of this RowSet object to the given type.
voidsetUrl(String url)
Sets the URL this RowSet object will use when it uses the DriverManager to create a connection.
voidsetUsername(String name)
Sets the username property for this RowSet object to the given String.
voidupdateFloat(int columnIndex, float x)
Updates the designated column with a float value.
voidupdateInt(int columnIndex, int x)
Updates the designated column with an int value.
voidupdateObject(int columnIndex, Object x)
Updates the designated column with an Object value.
voidupdateRow()
Updates the underlying database with the new contents of the current row of this ResultSet object.
voidupdateString(int columnIndex, String x)
Updates the designated column with a String value.