Package oracle.pg.rdbms.pgql.pgview
Class PgViewResultSetMetaData
java.lang.Object
oracle.pg.rdbms.pgql.pgview.PgViewResultSetMetaData
- All Implemented Interfaces:
oracle.pgql.lang.ResultSetMetaData
This class describes column meta data for a PGQL query result.
-
Method Summary
Modifier and TypeMethodDescriptionintGets the total number of columns in the query result.getColumnName(int column) Gets the name of the column at the given offset starting from 1
-
Method Details
-
getColumnCount
public int getColumnCount()Gets the total number of columns in the query result.- Specified by:
getColumnCountin interfaceoracle.pgql.lang.ResultSetMetaData- Returns:
- the total number of columns
-
getColumnName
Gets the name of the column at the given offset starting from 1- Specified by:
getColumnNamein interfaceoracle.pgql.lang.ResultSetMetaData- Parameters:
column- the offset of the column, numbering starts from 1- Returns:
- the column name
-