HomeMogDBMogDB StackUqbar
v2.0

Documentation:v2.0

Supported Versions:

Other Versions:

java.sql.ResultSet

This section describes java.sql.ResultSet, the interface for execution result sets.

Table 1 Support status for java.sql.ResultSet

Method Name Return Type Support JDBC 4
findColumn(String columnLabel) int Yes
getBigDecimal(int columnIndex) BigDecimal Yes
getBigDecimal(String columnLabel) BigDecimal Yes
getBoolean(int columnIndex) Boolean Yes
getBoolean(String columnLabel) Boolean Yes
getByte(int columnIndex) byte Yes
getBytes(int columnIndex) byte[] Yes
getByte(String columnLabel) byte Yes
getBytes(String columnLabel) byte[] Yes
getDate(int columnIndex) Date Yes
getDate(String columnLabel) Date Yes
getDouble(int columnIndex) double Yes
getDouble(String columnLabel) double Yes
getFloat(int columnIndex) float Yes
getFloat(String columnLabel) float Yes
getInt(int columnIndex) int Yes
getInt(String columnLabel) int Yes
getLong(int columnIndex) long Yes
getLong(String columnLabel) long Yes
getShort(int columnIndex) short Yes
getShort(String columnLabel) short Yes
getString(int columnIndex) String Yes
getString(String columnLabel) String Yes
getTime(int columnIndex) Time Yes
getTime(String columnLabel) Time Yes
getTimestamp(int columnIndex) Timestamp Yes
getTimestamp(String columnLabel) Timestamp Yes
isAfterLast() Boolean Yes
isBeforeFirst() Boolean Yes
isFirst() Boolean Yes
next() Boolean Yes

img NOTE:

  • One Statement cannot have multiple open ResultSets.
  • The cursor that is used for traversing the ResultSet cannot be open after being committed.
Copyright © 2011-2024 www.enmotech.com All rights reserved.