java.sql.ResultSetMetaData methods supported
A ResultSetMetaData object can be used to get information about the types and properties of the columns in a ResultSet object.
The following methods are supported by the IMS JDBC drivers for the ResultSetMetaData interface.
| JDBC method | IMS Universal JDBC driver and IMS Universal JCA/JDBC driver support |
|---|---|
| getCatalogName(int column) | Yes |
| getColumnClassName(int column) | Yes |
| getColumnCount() | Yes |
| getColumnDisplaySize(int column) | Yes |
| getColumnLabel(int column) | Yes |
| getColumnName(int column) | Yes |
| getColumnType(int column) | Yes |
| getColumnTypeName(int column) | Yes |
| getPrecision(int column) | Yes |
| getScale(int column) | Yes |
| getSchemaName(int column) | Yes |
| getTableName(int column) | Yes |
| isAutoIncrement(int column) | Yes |
| isCaseSensitive(int column) | Yes |
| isCurrency(int column) | Yes |
| isDefinitelyWritable(int column) | Yes |
| isNullable(int column) | Yes |
| isReadOnly(int column) | Yes |
| isSearchable(int column) | Yes |
| isSigned(int column) | Yes |
| isWritable(int column) | Yes |