Package org.postgresql
Interface PGResultSetMetaData
- All Known Implementing Classes:
- PgResultSetMetaData
public interface PGResultSetMetaData
- 
Method SummaryModifier and TypeMethodDescriptiongetBaseColumnName(int column) Returns the underlying column name of a query result, or "" if it is unable to be determined.getBaseSchemaName(int column) Returns the underlying schema name of query result, or "" if it is unable to be determined.getBaseTableName(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 Details- 
getBaseColumnNameReturns the underlying column name of a query result, or "" if it is unable to be determined.- Parameters:
- column- column position (1-based)
- Returns:
- underlying column name of a query result
- Throws:
- SQLException- if something wrong happens
- Since:
- 8.0
 
- 
getBaseTableNameReturns the underlying table name of query result, or "" if it is unable to be determined.- Parameters:
- column- column position (1-based)
- Returns:
- underlying table name of query result
- Throws:
- SQLException- if something wrong happens
- Since:
- 8.0
 
- 
getBaseSchemaNameReturns the underlying schema name of query result, or "" if it is unable to be determined.- Parameters:
- column- column position (1-based)
- Returns:
- underlying schema name of query result
- Throws:
- SQLException- if something wrong happens
- Since:
- 8.0
 
- 
getFormatIs a column Text or Binary?- Parameters:
- column- column position (1-based)
- Returns:
- 0 if column data format is TEXT, or 1 if BINARY
- Throws:
- SQLException- if something wrong happens
- Since:
- 9.4
- See Also:
 
 
-