public interface ResultSetMetaData
| Modifier and Type | Field and Description |
|---|---|
static int |
columnNoNulls |
static int |
columnNullable |
static int |
columnNullableUnknown |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCatalogName(int column) |
java.lang.String |
getColumnClassName(int column) |
int |
getColumnCount() |
int |
getColumnDisplaySize(int column) |
java.lang.String |
getColumnLabel(int column) |
java.lang.String |
getColumnName(int column) |
int |
getColumnType(int column) |
java.lang.String |
getColumnTypeName(int column) |
int |
getPrecision(int column) |
int |
getScale(int column) |
java.lang.String |
getSchemaName(int column) |
java.lang.String |
getTableName(int column) |
boolean |
isAutoIncrement(int column) |
boolean |
isCaseSensitive(int column) |
boolean |
isCurrency(int column) |
boolean |
isDefinitelyWritable(int column) |
int |
isNullable(int column) |
boolean |
isReadOnly(int column) |
boolean |
isSearchable(int column) |
boolean |
isSigned(int column) |
boolean |
isWritable(int column) |
static final int columnNoNulls
static final int columnNullable
static final int columnNullableUnknown
int getColumnCount()
throws java.sql.SQLException
java.sql.SQLExceptionboolean isAutoIncrement(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isCaseSensitive(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isSearchable(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isCurrency(int column)
throws java.sql.SQLException
java.sql.SQLExceptionint isNullable(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isSigned(int column)
throws java.sql.SQLException
java.sql.SQLExceptionint getColumnDisplaySize(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getColumnLabel(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getColumnName(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getSchemaName(int column)
throws java.sql.SQLException
java.sql.SQLExceptionint getPrecision(int column)
throws java.sql.SQLException
java.sql.SQLExceptionint getScale(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getTableName(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getCatalogName(int column)
throws java.sql.SQLException
java.sql.SQLExceptionint getColumnType(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getColumnTypeName(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isReadOnly(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isWritable(int column)
throws java.sql.SQLException
java.sql.SQLExceptionboolean isDefinitelyWritable(int column)
throws java.sql.SQLException
java.sql.SQLExceptionjava.lang.String getColumnClassName(int column)
throws java.sql.SQLException
java.sql.SQLException