Java org.springframework.jdbc.support.rowset SqlRowSetMetaData fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.support.rowset SqlRowSetMetaData fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.support.rowset SqlRowSetMetaData.

The text is from its open source code.

Method

StringgetCatalogName(int columnIndex)
Retrieve the catalog name of the table that served as the source for the specified column.
intgetColumnCount()
Retrieve the number of columns in the RowSet.
StringgetColumnLabel(int columnIndex)
Retrieve the suggested column title for the column specified.
StringgetColumnName(int columnIndex)
Retrieve the column name for the indicated column.
String[]getColumnNames()
Return the column names of the table that the result set represents.
intgetColumnType(int columnIndex)
Retrieve the SQL type code for the indicated column.
StringgetColumnTypeName(int columnIndex)
Retrieve the DBMS-specific type name for the indicated column.
intgetPrecision(int columnIndex)
Retrieve the precision for the indicated column.
StringgetSchemaName(int columnIndex)
Retrieve the schema name of the table that served as the source for the specified column.
StringgetTableName(int columnIndex)
Retrieve the name of the table that served as the source for the specified column.