| 程序包 | 说明 |
|---|---|
| online.sanen.unabo.template |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
SqlRowSetWrapp.absolute(int row) |
boolean |
SqlRowSet.absolute(int row)
Move the cursor to the given row number in the row set,
just after the last row.
|
void |
SqlRowSetWrapp.afterLast() |
void |
SqlRowSet.afterLast()
Move the cursor to the end of this row set.
|
void |
SqlRowSetWrapp.beforeFirst() |
void |
SqlRowSet.beforeFirst()
Move the cursor to the front of this row set,
just before the first row.
|
int |
SqlRowSetWrapp.findColumn(String columnLabel) |
int |
SqlRowSet.findColumn(String columnLabel)
Map the given column label to its column index.
|
boolean |
SqlRowSetWrapp.first() |
boolean |
SqlRowSet.first()
Move the cursor to the first row of this row set.
|
BigDecimal |
SqlRowSetWrapp.getBigDecimal(int columnIndex) |
BigDecimal |
SqlRowSet.getBigDecimal(int columnIndex)
Retrieve the value of the indicated column in the current row
as a BigDecimal object.
|
BigDecimal |
SqlRowSetWrapp.getBigDecimal(String columnLabel) |
BigDecimal |
SqlRowSet.getBigDecimal(String columnLabel)
Retrieve the value of the indicated column in the current row
as a BigDecimal object.
|
boolean |
SqlRowSetWrapp.getBoolean(int columnIndex) |
boolean |
SqlRowSet.getBoolean(int columnIndex)
Retrieve the value of the indicated column in the current row
as a boolean.
|
boolean |
SqlRowSetWrapp.getBoolean(String columnLabel) |
boolean |
SqlRowSet.getBoolean(String columnLabel)
Retrieve the value of the indicated column in the current row
as a boolean.
|
byte |
SqlRowSetWrapp.getByte(int columnIndex) |
byte |
SqlRowSet.getByte(int columnIndex)
Retrieve the value of the indicated column in the current row
as a byte.
|
byte |
SqlRowSetWrapp.getByte(String columnLabel) |
byte |
SqlRowSet.getByte(String columnLabel)
Retrieve the value of the indicated column in the current row
as a byte.
|
String |
SqlRowSetMetaData.getCatalogName(int columnIndex)
Retrieve the catalog name of the table that served as the source for the
specified column.
|
String |
ResultSetWrappingSqlRowSetMetaData.getCatalogName(int column) |
String |
SqlRowSetMetaData.getColumnClassName(int columnIndex)
Retrieve the fully qualified class that the specified column will be mapped
to.
|
String |
ResultSetWrappingSqlRowSetMetaData.getColumnClassName(int column) |
int |
SqlRowSetMetaData.getColumnCount()
Retrieve the number of columns in the RowSet.
|
int |
ResultSetWrappingSqlRowSetMetaData.getColumnCount() |
int |
SqlRowSetMetaData.getColumnDisplaySize(int columnIndex)
Retrieve the maximum width of the designated column.
|
int |
ResultSetWrappingSqlRowSetMetaData.getColumnDisplaySize(int column) |
String |
SqlRowSetMetaData.getColumnLabel(int columnIndex)
Retrieve the suggested column title for the column specified.
|
String |
ResultSetWrappingSqlRowSetMetaData.getColumnLabel(int column) |
String |
SqlRowSetMetaData.getColumnName(int columnIndex)
Retrieve the column name for the indicated column.
|
String |
ResultSetWrappingSqlRowSetMetaData.getColumnName(int column) |
String[] |
SqlRowSetMetaData.getColumnNames()
Return the column names of the table that the result set represents.
|
String[] |
ResultSetWrappingSqlRowSetMetaData.getColumnNames() |
int |
SqlRowSetMetaData.getColumnType(int columnIndex)
Retrieve the SQL type code for the indicated column.
|
int |
ResultSetWrappingSqlRowSetMetaData.getColumnType(int column) |
String |
SqlRowSetMetaData.getColumnTypeName(int columnIndex)
Retrieve the DBMS-specific type name for the indicated column.
|
String |
ResultSetWrappingSqlRowSetMetaData.getColumnTypeName(int column) |
Date |
SqlRowSetWrapp.getDate(int columnIndex) |
Date |
SqlRowSet.getDate(int columnIndex)
Retrieve the value of the indicated column in the current row
as a Date object.
|
Date |
SqlRowSetWrapp.getDate(int columnIndex,
Calendar cal) |
Date |
SqlRowSet.getDate(int columnIndex,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Date object.
|
Date |
SqlRowSetWrapp.getDate(String columnLabel) |
Date |
SqlRowSet.getDate(String columnLabel)
Retrieve the value of the indicated column in the current row
as a Date object.
|
Date |
SqlRowSetWrapp.getDate(String columnLabel,
Calendar cal) |
Date |
SqlRowSet.getDate(String columnLabel,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Date object.
|
double |
SqlRowSetWrapp.getDouble(int columnIndex) |
double |
SqlRowSet.getDouble(int columnIndex)
Retrieve the value of the indicated column in the current row
as a Double object.
|
double |
SqlRowSetWrapp.getDouble(String columnLabel) |
double |
SqlRowSet.getDouble(String columnLabel)
Retrieve the value of the indicated column in the current row
as a Double object.
|
float |
SqlRowSetWrapp.getFloat(int columnIndex) |
float |
SqlRowSet.getFloat(int columnIndex)
Retrieve the value of the indicated column in the current row
as a float.
|
float |
SqlRowSetWrapp.getFloat(String columnLabel) |
float |
SqlRowSet.getFloat(String columnLabel)
Retrieve the value of the indicated column in the current row
as a float.
|
int |
SqlRowSetWrapp.getInt(int columnIndex) |
int |
SqlRowSet.getInt(int columnIndex)
Retrieve the value of the indicated column in the current row
as an int.
|
int |
SqlRowSetWrapp.getInt(String columnLabel) |
int |
SqlRowSet.getInt(String columnLabel)
Retrieve the value of the indicated column in the current row
as an int.
|
long |
SqlRowSetWrapp.getLong(int columnIndex) |
long |
SqlRowSet.getLong(int columnIndex)
Retrieve the value of the indicated column in the current row
as a long.
|
long |
SqlRowSetWrapp.getLong(String columnLabel) |
long |
SqlRowSet.getLong(String columnLabel)
Retrieve the value of the indicated column in the current row
as a long.
|
String |
SqlRowSetWrapp.getNString(int columnIndex) |
String |
SqlRowSet.getNString(int columnIndex)
Retrieve the value of the indicated column in the current row
as a String (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
|
String |
SqlRowSetWrapp.getNString(String columnLabel) |
String |
SqlRowSet.getNString(String columnLabel)
Retrieve the value of the indicated column in the current row
as a String (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
|
Object |
SqlRowSetWrapp.getObject(int columnIndex) |
Object |
SqlRowSet.getObject(int columnIndex)
Retrieve the value of the indicated column in the current row
as an Object.
|
<T> T |
SqlRowSetWrapp.getObject(int columnIndex,
Class<T> type) |
<T> T |
SqlRowSet.getObject(int columnIndex,
Class<T> type)
Retrieve the value of the indicated column in the current row
as an Object.
|
Object |
SqlRowSetWrapp.getObject(int columnIndex,
Map<String,Class<?>> map) |
Object |
SqlRowSet.getObject(int columnIndex,
Map<String,Class<?>> map)
Retrieve the value of the indicated column in the current row
as an Object.
|
Object |
SqlRowSetWrapp.getObject(String columnLabel) |
Object |
SqlRowSet.getObject(String columnLabel)
Retrieve the value of the indicated column in the current row
as an Object.
|
<T> T |
SqlRowSetWrapp.getObject(String columnLabel,
Class<T> type) |
<T> T |
SqlRowSet.getObject(String columnLabel,
Class<T> type)
Retrieve the value of the indicated column in the current row
as an Object.
|
Object |
SqlRowSetWrapp.getObject(String columnLabel,
Map<String,Class<?>> map) |
Object |
SqlRowSet.getObject(String columnLabel,
Map<String,Class<?>> map)
Retrieve the value of the indicated column in the current row
as an Object.
|
int |
SqlRowSetMetaData.getPrecision(int columnIndex)
Retrieve the precision for the indicated column.
|
int |
ResultSetWrappingSqlRowSetMetaData.getPrecision(int column) |
int |
SqlRowSetWrapp.getRow() |
int |
SqlRowSet.getRow()
Retrieve the current row number.
|
int |
SqlRowSetMetaData.getScale(int columnIndex)
Retrieve the scale of the indicated column.
|
int |
ResultSetWrappingSqlRowSetMetaData.getScale(int column) |
String |
SqlRowSetMetaData.getSchemaName(int columnIndex)
Retrieve the schema name of the table that served as the source for the
specified column.
|
String |
ResultSetWrappingSqlRowSetMetaData.getSchemaName(int column) |
short |
SqlRowSetWrapp.getShort(int columnIndex) |
short |
SqlRowSet.getShort(int columnIndex)
Retrieve the value of the indicated column in the current row
as a short.
|
short |
SqlRowSetWrapp.getShort(String columnLabel) |
short |
SqlRowSet.getShort(String columnLabel)
Retrieve the value of the indicated column in the current row
as a short.
|
String |
SqlRowSetWrapp.getString(int columnIndex) |
String |
SqlRowSet.getString(int columnIndex)
Retrieve the value of the indicated column in the current row
as a String.
|
String |
SqlRowSetWrapp.getString(String columnLabel) |
String |
SqlRowSet.getString(String columnLabel)
Retrieve the value of the indicated column in the current row
as a String.
|
String |
SqlRowSetMetaData.getTableName(int columnIndex)
Retrieve the name of the table that served as the source for the specified
column.
|
String |
ResultSetWrappingSqlRowSetMetaData.getTableName(int column) |
Time |
SqlRowSetWrapp.getTime(int columnIndex) |
Time |
SqlRowSet.getTime(int columnIndex)
Retrieve the value of the indicated column in the current row
as a Time object.
|
Time |
SqlRowSetWrapp.getTime(int columnIndex,
Calendar cal) |
Time |
SqlRowSet.getTime(int columnIndex,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Time object.
|
Time |
SqlRowSetWrapp.getTime(String columnLabel) |
Time |
SqlRowSet.getTime(String columnLabel)
Retrieve the value of the indicated column in the current row
as a Time object.
|
Time |
SqlRowSetWrapp.getTime(String columnLabel,
Calendar cal) |
Time |
SqlRowSet.getTime(String columnLabel,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Time object.
|
Timestamp |
SqlRowSetWrapp.getTimestamp(int columnIndex) |
Timestamp |
SqlRowSet.getTimestamp(int columnIndex)
Retrieve the value of the indicated column in the current row
as a Timestamp object.
|
Timestamp |
SqlRowSetWrapp.getTimestamp(int columnIndex,
Calendar cal) |
Timestamp |
SqlRowSet.getTimestamp(int columnIndex,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Timestamp object.
|
Timestamp |
SqlRowSetWrapp.getTimestamp(String columnLabel) |
Timestamp |
SqlRowSet.getTimestamp(String columnLabel)
Retrieve the value of the indicated column in the current row
as a Timestamp object.
|
Timestamp |
SqlRowSetWrapp.getTimestamp(String columnLabel,
Calendar cal) |
Timestamp |
SqlRowSet.getTimestamp(String columnLabel,
Calendar cal)
Retrieve the value of the indicated column in the current row
as a Timestamp object.
|
boolean |
SqlRowSetWrapp.isAfterLast() |
boolean |
SqlRowSet.isAfterLast()
Retrieve whether the cursor is after the last row of this row set.
|
boolean |
SqlRowSetWrapp.isBeforeFirst() |
boolean |
SqlRowSet.isBeforeFirst()
Retrieve whether the cursor is before the first row of this row set.
|
boolean |
SqlRowSetMetaData.isCaseSensitive(int columnIndex)
Indicate whether the case of the designated column is significant.
|
boolean |
ResultSetWrappingSqlRowSetMetaData.isCaseSensitive(int column) |
boolean |
SqlRowSetMetaData.isCurrency(int columnIndex)
Indicate whether the designated column contains a currency value.
|
boolean |
ResultSetWrappingSqlRowSetMetaData.isCurrency(int column) |
boolean |
SqlRowSetWrapp.isFirst() |
boolean |
SqlRowSet.isFirst()
Retrieve whether the cursor is on the first row of this row set.
|
boolean |
SqlRowSetWrapp.isLast() |
boolean |
SqlRowSet.isLast()
Retrieve whether the cursor is on the last row of this row set.
|
boolean |
SqlRowSetMetaData.isSigned(int columnIndex)
Indicate whether the designated column contains a signed number.
|
boolean |
ResultSetWrappingSqlRowSetMetaData.isSigned(int column) |
boolean |
SqlRowSetWrapp.last() |
boolean |
SqlRowSet.last()
Move the cursor to the last row of this row set.
|
boolean |
SqlRowSetWrapp.next() |
boolean |
SqlRowSet.next()
Move the cursor to the next row.
|
boolean |
SqlRowSetWrapp.previous() |
boolean |
SqlRowSet.previous()
Move the cursor to the previous row.
|
boolean |
SqlRowSetWrapp.relative(int rows) |
boolean |
SqlRowSet.relative(int rows)
Move the cursor a relative number of rows,
either positive or negative.
|
boolean |
SqlRowSetWrapp.wasNull() |
boolean |
SqlRowSet.wasNull()
Report whether the last column read had a value of SQL
NULL. |
| 构造器和说明 |
|---|
SqlRowSetWrapp(ResultSet resultSet)
Create a new ResultSetWrappingSqlRowSet for the given ResultSet.
|
Copyright © 2023. All rights reserved.