|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
public interface SqlRowSetMetaData
元数据接口,接口功能类似于 javax.sql.ResultSetMetaData
SqlRowSet.getMetaData(),
ResultSetMetaData| 方法摘要 | |
|---|---|
String |
getCatalogName(int columnIndex)
Retrieves the catalog name of the table that served as the source for the specified column. |
String |
getColumnClassName(int columnIndex)
Retrieves the fully qualified class that the specified column will be mapped to. |
int |
getColumnCount()
Retrives the number of columns in the RowSet. |
int |
getColumnDisplaySize(int columnIndex)
Retrieves the maximum width of the designated column. |
String |
getColumnLabel(int columnIndex)
Retrieve the suggested column title for the column specified. |
String |
getColumnName(int columnIndex)
Retrieve the column name for the indicated column. |
String[] |
getColumnNames()
Return the column names of the table that the result set represents. |
int |
getColumnType(int columnIndex)
Retrieve the SQL type code for the indicated column. |
String |
getColumnTypeName(int columnIndex)
Retrieves the DBMS-specific type name for the indicated column. |
int |
getPrecision(int columnIndex)
Retrieves the precision for the indicated column. |
int |
getScale(int columnIndex)
Retrieves the scale of the indicated column. |
String |
getSchemaName(int columnIndex)
Retrieves the schema name of the table that served as the source for the specified column. |
String |
getTableName(int columnIndex)
Retrieves the name of the table that served as the source for the specified column. |
boolean |
isCaseSensitive(int columnIndex)
Indicates whether the case of the designated column is significant. |
boolean |
isCurrency(int columnIndex)
Indicates whether the designated column contains a currency value. |
boolean |
isSigned(int columnIndex)
Indicates whether the designated column contains a signed number. |
| 方法详细信息 |
|---|
String getCatalogName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getCatalogName(int)
String getColumnClassName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnClassName(int)
int getColumnCount()
throws InvalidDataAccessException
InvalidDataAccessExceptionResultSetMetaData.getColumnCount()
String[] getColumnNames()
throws InvalidDataAccessException
InvalidDataAccessException
int getColumnDisplaySize(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnDisplaySize(int)
String getColumnLabel(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnLabel(int)
String getColumnName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnName(int)
int getColumnType(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnType(int),
Types
String getColumnTypeName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getColumnTypeName(int)
int getPrecision(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getPrecision(int)
int getScale(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getScale(int)
String getSchemaName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getSchemaName(int)
String getTableName(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.getTableName(int)
boolean isCaseSensitive(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.isCaseSensitive(int)
boolean isCurrency(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.isCurrency(int)
boolean isSigned(int columnIndex)
throws InvalidDataAccessException
columnIndex - the index of the column
InvalidDataAccessExceptionResultSetMetaData.isSigned(int)
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||