public class PgResultSetMetaData extends Object implements ResultSetMetaData, PGResultSetMetaData
| Modifier and Type | Field and Description |
|---|---|
protected BaseConnection |
connection |
protected Field[] |
fields |
columnNoNulls, columnNullable, columnNullableUnknown| Constructor and Description |
|---|
PgResultSetMetaData(BaseConnection connection,
Field[] fields) |
| Modifier and Type | Method and Description |
|---|---|
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 schema 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.
|
String |
getCatalogName(int column)
Gets the designated column's table's catalog name.
|
String |
getColumnClassName(int column)
Returns the fully-qualified name of the Java class whose instances are manufactured if the
method
ResultSet.getObject is called to retrieve a value from the column. |
int |
getColumnCount()
Returns the number of columns in this
ResultSet object. |
int |
getColumnDisplaySize(int column)
Indicates the designated column's normal maximum width in characters.
|
String |
getColumnLabel(int column)
Gets the designated column's suggested title for use in printouts and
displays.
|
String |
getColumnName(int column)
Get the designated column's name.
|
int |
getColumnType(int column)
Retrieves the designated column's SQL type.
|
String |
getColumnTypeName(int column)
Retrieves the designated column's database-specific type name.
|
protected Field |
getField(int columnIndex) |
int |
getFormat(int column)
Is a column Text or Binary?
|
protected String |
getPGType(int columnIndex) |
int |
getPrecision(int column)
Get the designated column's specified column size.
|
int |
getScale(int column)
Gets the designated column's number of digits to right of the decimal point.
0 is returned for data types where the scale is not applicable.
|
String |
getSchemaName(int column)
Get the designated column's table's schema.
|
protected int |
getSQLType(int columnIndex) |
String |
getTableName(int column)
Gets the designated column's table name.
|
boolean |
isAutoIncrement(int column)
Indicates whether the designated column is automatically numbered.
|
boolean |
isCaseSensitive(int column)
Indicates whether a column's case matters.
|
boolean |
isCurrency(int column)
Indicates whether the designated column is a cash value.
|
boolean |
isDefinitelyWritable(int column)
Indicates whether a write on the designated column will definitely succeed.
|
int |
isNullable(int column)
Indicates the nullability of values in the designated column.
|
boolean |
isReadOnly(int column)
Indicates whether the designated column is definitely not writable.
|
boolean |
isSearchable(int column)
Indicates whether the designated column can be used in a where clause.
|
boolean |
isSigned(int column)
Indicates whether values in the designated column are signed numbers.
|
boolean |
isWrapperFor(Class<?> iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
isWritable(int column)
Indicates whether it is possible for a write on the designated column to succeed.
|
<T> T |
unwrap(Class<T> iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
protected final BaseConnection connection
protected final Field[] fields
public PgResultSetMetaData(BaseConnection connection, Field[] fields)
public int getColumnCount()
throws SQLException
java.sql.ResultSetMetaDataResultSet object.getColumnCount in interface ResultSetMetaDataSQLException - if a database access error occurspublic boolean isAutoIncrement(int column)
throws SQLException
java.sql.ResultSetMetaDataisAutoIncrement in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic boolean isCaseSensitive(int column)
throws SQLException
java.sql.ResultSetMetaDataisCaseSensitive in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic boolean isSearchable(int column)
throws SQLException
java.sql.ResultSetMetaDataisSearchable in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic boolean isCurrency(int column)
throws SQLException
java.sql.ResultSetMetaDataisCurrency in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic int isNullable(int column)
throws SQLException
java.sql.ResultSetMetaDataisNullable in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...columnNoNulls,
columnNullable or columnNullableUnknownSQLException - if a database access error occurspublic boolean isSigned(int column)
throws SQLException
java.sql.ResultSetMetaDataisSigned in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic int getColumnDisplaySize(int column)
throws SQLException
java.sql.ResultSetMetaDatagetColumnDisplaySize in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getColumnLabel(int column) throws SQLException
java.sql.ResultSetMetaDataAS
clause. If a SQL AS is not specified, the value returned from
getColumnLabel will be the same as the value returned by the
getColumnName method.getColumnLabel in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getColumnName(int column) throws SQLException
java.sql.ResultSetMetaDatagetColumnName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getBaseColumnName(int column) throws SQLException
PGResultSetMetaDatagetBaseColumnName in interface PGResultSetMetaDatacolumn - column position (1-based)SQLException - if something wrong happenspublic String getSchemaName(int column) throws SQLException
java.sql.ResultSetMetaDatagetSchemaName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getBaseSchemaName(int column) throws SQLException
PGResultSetMetaDatagetBaseSchemaName in interface PGResultSetMetaDatacolumn - column position (1-based)SQLException - if something wrong happenspublic int getPrecision(int column)
throws SQLException
java.sql.ResultSetMetaDatagetPrecision in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic int getScale(int column)
throws SQLException
java.sql.ResultSetMetaDatagetScale in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getTableName(int column) throws SQLException
java.sql.ResultSetMetaDatagetTableName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic String getBaseTableName(int column) throws SQLException
PGResultSetMetaDatagetBaseTableName in interface PGResultSetMetaDatacolumn - column position (1-based)SQLException - if something wrong happenspublic String getCatalogName(int column) throws SQLException
java.sql.ResultSetMetaDatagetCatalogName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic int getColumnType(int column)
throws SQLException
java.sql.ResultSetMetaDatagetColumnType in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occursTypespublic int getFormat(int column)
throws SQLException
PGResultSetMetaDatagetFormat in interface PGResultSetMetaDatacolumn - column position (1-based)SQLException - if something wrong happensField.BINARY_FORMAT,
Field.TEXT_FORMATpublic String getColumnTypeName(int column) throws SQLException
java.sql.ResultSetMetaDatagetColumnTypeName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...SQLException - if a database access error occurspublic boolean isReadOnly(int column)
throws SQLException
java.sql.ResultSetMetaDataisReadOnly in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic boolean isWritable(int column)
throws SQLException
java.sql.ResultSetMetaDataisWritable in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occurspublic boolean isDefinitelyWritable(int column)
throws SQLException
java.sql.ResultSetMetaDataisDefinitelyWritable in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...true if so; false otherwiseSQLException - if a database access error occursprotected Field getField(int columnIndex) throws SQLException
SQLExceptionprotected String getPGType(int columnIndex) throws SQLException
SQLExceptionprotected int getSQLType(int columnIndex)
throws SQLException
SQLExceptionpublic String getColumnClassName(int column) throws SQLException
ResultSet.getObject is called to retrieve a value from the column.
ResultSet.getObject may return a subclass of the class returned by this method.getColumnClassName in interface ResultSetMetaDatacolumn - the first column is 1, the second is 2, ...ResultSet.getObject to retrieve the value in the
specified column. This is the class name used for custom mapping.SQLException - if a database access error occurspublic boolean isWrapperFor(Class<?> iface) throws SQLException
java.sql.WrapperisWrapperFor on the wrapped
object. If this does not implement the interface and is not a wrapper, return false.
This method should be implemented as a low-cost operation compared to unwrap so that
callers can use this method to avoid expensive unwrap calls that may fail. If this method
returns true then calling unwrap with the same argument should succeed.isWrapperFor in interface Wrapperiface - a Class defining an interface.SQLException - if an error occurs while determining whether this is a wrapper
for an object with the given interface.public <T> T unwrap(Class<T> iface) throws SQLException
java.sql.Wrapperunwrap recursively on the wrapped object
or a proxy for that result. If the receiver is not a
wrapper and does not implement the interface, then an SQLException is thrown.unwrap in interface Wrapperiface - A Class defining an interface that the result must implement.SQLException - If no object found that implements the interfaceCopyright © 2017 PostgreSQL Global Development Group. All rights reserved.