Java javax.sql RowSet fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

voidbeforeFirst()
Moves the cursor to the front of this ResultSet object, just before the first row.
floatgetFloat(int columnIndex)
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
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.

intgetRow()
Retrieves the current row number.
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.
booleannext()
Moves the cursor forward one row from its current position.
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.