Get SDOResultSet column values
- Last Updated: July 22, 2025
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
These methods return data from a specified column on an SDOResultSet according to the specified data type. All column access methods in SDOResultSet use the flat model (see Learn About Open Clients. The column is specified by name (columnName) or number (columnIndex), as follows:
-
BigDecimal getBigDecimal(intcolumnName) -
BigDecimal getBigDecimal(StringcolumnName) -
boolean getBoolean(intcolumnName) -
boolean getBoolean(StringcolumnName) -
byte[] getBytes(intcolumnName) -
byte[] getBytes(StringcolumnName) -
double getDouble(intcolumnName) -
double getDouble(StringcolumnName) -
int getInt(intcolumnName) -
int getInt(StringcolumnName) -
java.sql.Blob getBlob(intcolumnName) -
java.sql.Blob getBlob(StringcolumnName) -
java.sql.Clob getClob(intcolumnName) -
java.sql.Clob getClob(StringcolumnName) -
java.sql.Date getDate(intcolumnName) -
java.sql.Date getDate(StringcolumnName) -
java.sql.Timestamp getTimestamp(intcolumnName) -
java.sql.Timestamp getTimestamp(StringcolumnName) -
long getLong(intcolumnName) -
long getLong(StringcolumnName) -
Object getObject(intcolumnName) -
Object getObject(StringcolumnName) -
String getString(intcolumnName) -
String getString(StringcolumnName)
Some java.util.Date and java.sql.Date methods
are being deprecated by JavaSoft in favor of using the more robust java.util.GregorianCalendar.
These are the methods that get column values for instances of this
class:
-
java.util.GregorianCalendar getGregorianCalendar(StringcolumnName) [Extension] -
java.util.GregorianCalendar getGregorianCalendar(intcolumnIndex) [Extension]
For more information on the mapping between ABL and Java data types, see the
sections on data type mapping for temp-table fields and passing OUTPUT TABLE parameters in Pass Parameters.