org.postgresql
Interface PGResultSetMetaData


public interface PGResultSetMetaData


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

Method Detail

getBaseColumnName

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

Throws:
java.sql.SQLException
Since:
8.0

getBaseTableName

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

Throws:
java.sql.SQLException
Since:
8.0

getBaseSchemaName

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

Throws:
java.sql.SQLException
Since:
8.0