java.sql.ResultSetMetaData
java.sql.ResultSetMetaData describes the information about ResultSet objects.
| Method Name | Return Type | JDBC4 Supported or Not |
|---|---|---|
| getCatalogName(int column) | String | Yes |
| getColumnClassName(int column) | String | Yes |
| getColumnCount() | int | Yes |
| getColumnDisplaySize(int column) | int | Yes |
| getColumnLabel(int column) | String | Yes |
| getColumnName(int column) | String | Yes |
| getColumnType(int column) | int | Yes |
| getColumnTypeName(int column) | String | Yes |
| getPrecision(int column) | int | Yes |
| getScale(int column) | int | Yes |
| getSchemaName(int column) | String | Yes |
| getTableName(int column) | String | Yes |
| isAutoIncrement(int column) | Boolean | Yes |
| isCaseSensitive(int column) | Boolean | Yes |
| isCurrency(int column) | Boolean | Yes |
| isDefinitelyWritable(int column) | Boolean | Yes |
| isNullable(int column) | int | Yes |
| isReadOnly(int column) | Boolean | Yes |
| isSearchable(int column) | Boolean | Yes |
| isSigned(int column) | Boolean | Yes |
| isWritable(int column) | Boolean | Yes |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.