Uses of Interface
org.postgresql.core.ResultHandler
-
Packages that use ResultHandler Package Description org.postgresql.core org.postgresql.core.v3 org.postgresql.jdbc -
-
Uses of ResultHandler in org.postgresql.core
Classes in org.postgresql.core that implement ResultHandler Modifier and Type Class Description class
ResultHandlerBase
Empty implementation ofResultHandler
interface.class
ResultHandlerDelegate
Internal to the driver class, please do not use in the application.private static class
SetupQueryRunner.SimpleResultHandler
Fields in org.postgresql.core declared as ResultHandler Modifier and Type Field Description private ResultHandler
ResultHandlerDelegate. delegate
Methods in org.postgresql.core with parameters of type ResultHandler Modifier and Type Method 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.Constructors in org.postgresql.core with parameters of type ResultHandler Constructor Description ResultHandlerDelegate(ResultHandler delegate)
-
Uses of ResultHandler in org.postgresql.core.v3
Methods in org.postgresql.core.v3 that return ResultHandler Modifier and Type Method Description private ResultHandler
QueryExecutorImpl. sendQueryPreamble(ResultHandler delegateHandler, int flags)
Methods in org.postgresql.core.v3 with parameters of type ResultHandler Modifier and Type Method 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)
private void
QueryExecutorImpl. flushIfDeadlockRisk(Query query, boolean disallowBatching, ResultHandler resultHandler, BatchResultHandler batchHandler, int flags)
private void
QueryExecutorImpl. interpretCommandStatus(java.lang.String status, ResultHandler handler)
protected void
QueryExecutorImpl. processResults(ResultHandler handler, int flags)
protected void
QueryExecutorImpl. processResults(ResultHandler handler, int flags, boolean adaptiveFetch)
private void
QueryExecutorImpl. sendQuery(Query query, V3ParameterList parameters, int maxRows, int fetchSize, int flags, ResultHandler resultHandler, BatchResultHandler batchHandler, boolean adaptiveFetch)
private ResultHandler
QueryExecutorImpl. sendQueryPreamble(ResultHandler delegateHandler, int flags)
-
Uses of ResultHandler in org.postgresql.jdbc
Classes in org.postgresql.jdbc that implement ResultHandler Modifier and Type Class Description class
BatchResultHandler
Internal class, it is not a part of public API.(package private) class
CallableBatchResultHandler
private class
PgConnection.TransactionCommandHandler
Handler for transaction queries.class
PgResultSet.CursorResultHandler
class
PgStatement.StatementResultHandler
ResultHandler implementations for updates, queries, and either-or.
-