Package quadbase.reportdesigner.util
Interface IRSMetaData
- All Known Implementing Classes:
QueryResultSet,StreamResultSet
public interface IRSMetaData
This interface describes the structure of a tabular data set represented by an IResultSet
interface.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintGets the number of columns in the result set.getColumnName(int col) Gets the name of a column in the result set.intgetColumnType(int col) Gets the data type of a column in the result set.getTableName(int col)
-
Method Details
-
getColumnCount
Gets the number of columns in the result set.- Throws:
Exception
-
getColumnName
Gets the name of a column in the result set.- Parameters:
the- column index (beginning with 1)- Returns:
- the column name
- Throws:
Exception
-
getTableName
- Throws:
Exception
-
getColumnType
Gets the data type of a column in the result set.- Parameters:
the- column index (beginning at 1)- Returns:
- the column SQL data type (as represented in java.sql.Types).
- Throws:
Exception- See Also:
-