Package | Description |
---|---|
org.postgresql.core | |
org.postgresql.core.v3 | |
org.postgresql.jdbc |
Modifier and Type | Class and Description |
---|---|
class |
ResultHandlerBase
Empty implementation of
ResultHandler interface. |
class |
ResultHandlerDelegate
Internal to the driver class, please do not use in the application.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryExecutor.execute(Query query,
ParameterList parameters,
ResultHandler handler,
int maxRows,
int fetchSize,
int flags)
Execute a Query, passing results to a provided ResultHandler.
|
void |
QueryExecutor.execute(Query query,
ParameterList parameters,
ResultHandler handler,
int maxRows,
int fetchSize,
int flags,
boolean adaptiveFetch)
Execute a Query with adaptive fetch, passing results to a provided ResultHandler.
|
void |
QueryExecutor.fetch(ResultCursor cursor,
ResultHandler handler,
int fetchSize,
boolean adaptiveFetch)
Fetch additional rows from a cursor.
|
Constructor and Description |
---|
ResultHandlerDelegate(ResultHandler delegate) |
Modifier and Type | Method and Description |
---|---|
void |
QueryExecutorImpl.execute(Query query,
ParameterList parameters,
ResultHandler handler,
int maxRows,
int fetchSize,
int flags) |
void |
QueryExecutorImpl.execute(Query query,
ParameterList parameters,
ResultHandler handler,
int maxRows,
int fetchSize,
int flags,
boolean adaptiveFetch) |
void |
QueryExecutorImpl.fetch(ResultCursor cursor,
ResultHandler handler,
int fetchSize,
boolean adaptiveFetch) |
protected void |
QueryExecutorImpl.processResults(ResultHandler handler,
int flags) |
protected void |
QueryExecutorImpl.processResults(ResultHandler handler,
int flags,
boolean adaptiveFetch) |
Modifier and Type | Class and Description |
---|---|
class |
BatchResultHandler
Internal class, it is not a part of public API.
|
class |
PgResultSet.CursorResultHandler |
class |
PgStatement.StatementResultHandler
ResultHandler implementations for updates, queries, and either-or.
|
Copyright © 2024 PostgreSQL Global Development Group. All rights reserved.