Package org.postgresql
Interface PGResultSetMetaData
-
public interface PGResultSetMetaData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBaseColumnName(int column)Returns the underlying column name of a query result, or "" if it is unable to be determined.java.lang.StringgetBaseSchemaName(int column)Returns the underlying table name of query result, or "" if it is unable to be determined.java.lang.StringgetBaseTableName(int column)Returns the underlying table name of query result, or "" if it is unable to be determined.intgetFormat(int column)Is a column Text or Binary?
-
-
-
Method Detail
-
getBaseColumnName
java.lang.String getBaseColumnName(int column) throws java.sql.SQLExceptionReturns 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.SQLExceptionReturns 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.SQLExceptionReturns the underlying table name of query result, or "" if it is unable to be determined.- Throws:
java.sql.SQLException- Since:
- 8.0
-
getFormat
int getFormat(int column) throws java.sql.SQLExceptionIs a column Text or Binary?- Throws:
java.sql.SQLException- Since:
- 9.4
- See Also:
Field.BINARY_FORMAT,Field.TEXT_FORMAT
-
-