Package | Description |
---|---|
org.postgresql.core | |
org.postgresql.core.v3 | |
org.postgresql.jdbc |
Modifier and Type | Method and Description |
---|---|
java.sql.ResultSet |
BaseStatement.createDriverResultSet(Field[] fields,
java.util.List<Tuple> tuples)
Create a synthetic resultset from data provided by the driver.
|
java.sql.ResultSet |
BaseStatement.createResultSet(Query originalQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor)
Create a resultset from data retrieved from the server.
|
void |
ResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor)
Called when result rows are received from a query.
|
void |
ResultHandlerDelegate.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
SetupQueryRunner.SimpleResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
ResultHandlerBase.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
Modifier and Type | Field and Description |
---|---|
private Field[] |
SimpleQuery.fields
The stored fields from previous execution or describe of a prepared statement.
|
Modifier and Type | Method and Description |
---|---|
(package private) Field[] |
SimpleQuery.getFields()
Returns the fields that this query will return.
|
private Field[] |
QueryExecutorImpl.receiveFields() |
Modifier and Type | Method and Description |
---|---|
(package private) void |
SimpleQuery.setFields(Field[] fields)
Sets the fields that this query will return.
|
private boolean |
QueryExecutorImpl.useBinary(Field field)
Returns true if the specified field should be retrieved using binary encoding.
|
Modifier and Type | Field and Description |
---|---|
protected Field[] |
PgResultSetMetaData.fields |
protected Field[] |
PgResultSet.fields |
Modifier and Type | Method and Description |
---|---|
protected Field |
PgResultSetMetaData.getField(int columnIndex)
For several routines in this package, we need to convert a columnIndex into a Field[]
descriptor.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Map<java.lang.String,java.lang.Integer> |
PgResultSet.createColumnNameIndexMap(Field[] fields,
boolean isSanitiserDisabled) |
java.sql.ResultSet |
PgStatement.createDriverResultSet(Field[] fields,
java.util.List<Tuple> tuples) |
java.sql.ResultSet |
PgStatement.createResultSet(Query originalQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
PgStatement.StatementResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
CallableBatchResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
PgResultSet.CursorResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
void |
BatchResultHandler.handleResultRows(Query fromQuery,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor) |
private void |
PgResultSet.initSqlType(Field field) |
protected java.lang.Object |
PgResultSet.internalGetObject(int columnIndex,
Field field) |
private int |
PgArray.storeValues(java.util.List<Tuple> rows,
Field[] fields,
int elementOid,
int[] dims,
int pos,
int thisDimension,
int index) |
Constructor and Description |
---|
PgResultSet(Query originalQuery,
BaseStatement statement,
Field[] fields,
java.util.List<Tuple> tuples,
ResultCursor cursor,
int maxRows,
int maxFieldSize,
int rsType,
int rsConcurrency,
int rsHoldability) |
PgResultSetMetaData(BaseConnection connection,
Field[] fields)
Initialise for a result with a tuple set and a field descriptor set
|