Java org.springframework.jdbc.support.rowset SqlRowSet fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.support.rowset SqlRowSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.support.rowset SqlRowSet.

The text is from its open source code.

Method

voidbeforeFirst()
Move the cursor to the front of this row set, just before the first row.
intfindColumn(String columnLabel)
Map the given column label to its column index.
booleanfirst()
Move the cursor to the first row of this row set.
BigDecimalgetBigDecimal(int columnIndex)
Retrieve the value of the indicated column in the current row as a BigDecimal object.
BigDecimalgetBigDecimal(String columnLabel)
Retrieve the value of the indicated column in the current row as a BigDecimal object.
booleangetBoolean(int columnIndex)
Retrieve the value of the indicated column in the current row as a boolean.
booleangetBoolean(String columnLabel)
Retrieve the value of the indicated column in the current row as a boolean.
DategetDate(int columnIndex)
Retrieve the value of the indicated column in the current row as a Date object.
DategetDate(String columnLabel)
Retrieve the value of the indicated column in the current row as a Date object.
doublegetDouble(int columnIndex)
Retrieve the value of the indicated column in the current row as a Double object.
doublegetDouble(String columnLabel)
Retrieve the value of the indicated column in the current row as a Double object.
floatgetFloat(int columnIndex)
Retrieve the value of the indicated column in the current row as a float.
floatgetFloat(String columnLabel)
Retrieve the value of the indicated column in the current row as a float.
intgetInt(int columnIndex)
Retrieve the value of the indicated column in the current row as an int.
intgetInt(String columnLabel)
Retrieve the value of the indicated column in the current row as an int.
longgetLong(int columnIndex)
Retrieve the value of the indicated column in the current row as a long.
longgetLong(String columnLabel)
Retrieve the value of the indicated column in the current row as a long.
SqlRowSetMetaDatagetMetaData()
Retrieve the meta-data, i.e.
ObjectgetObject(int columnIndex)
Retrieve the value of the indicated column in the current row as an Object.
ObjectgetObject(String columnLabel)
Retrieve the value of the indicated column in the current row as an Object.
intgetRow()
Retrieve the current row number.
StringgetString(int columnIndex)
Retrieve the value of the indicated column in the current row as a String.
StringgetString(String columnLabel)
Retrieve the value of the indicated column in the current row as a String.
TimestampgetTimestamp(int columnIndex)
Retrieve the value of the indicated column in the current row as a Timestamp object.
TimestampgetTimestamp(String columnLabel)
Retrieve the value of the indicated column in the current row as a Timestamp object.
booleanisLast()
Retrieve whether the cursor is on the last row of this row set.
booleanlast()
Move the cursor to the last row of this row set.
booleannext()
Move the cursor to the next row.
booleanwasNull()
Report whether the last column read had a value of SQL NULL .