org.postgresql
Interface PGResultSetMetaData


public interface PGResultSetMetaData


Method Summary
 String getBaseColumnName(int column)
          Returns the underlying column name of a query result, or "" if it is unable to be determined.
 String getBaseSchemaName(int column)
          Returns the underlying table name of query result, or "" if it is unable to be determined.
 String getBaseTableName(int column)
          Returns the underlying table name of query result, or "" if it is unable to be determined.
 

Method Detail

getBaseColumnName

String getBaseColumnName(int column)
                         throws SQLException
Returns the underlying column name of a query result, or "" if it is unable to be determined.

Throws:
SQLException
Since:
8.0

getBaseTableName

String getBaseTableName(int column)
                        throws SQLException
Returns the underlying table name of query result, or "" if it is unable to be determined.

Throws:
SQLException
Since:
8.0

getBaseSchemaName

String getBaseSchemaName(int column)
                         throws SQLException
Returns the underlying table name of query result, or "" if it is unable to be determined.

Throws:
SQLException
Since:
8.0