Uses of Class
com.impossibl.postgres.protocol.ResultBatch
-
Packages that use ResultBatch Package Description com.impossibl.postgres.jdbc com.impossibl.postgres.protocol com.impossibl.postgres.system com.impossibl.postgres.system.tables -
-
Uses of ResultBatch in com.impossibl.postgres.jdbc
Methods in com.impossibl.postgres.jdbc that return types with arguments of type ResultBatch Modifier and Type Method Description List<ResultBatch>
DirectQuery. getResultBatches()
List<ResultBatch>
PreparedQuery. getResultBatches()
List<ResultBatch>
Query. getResultBatches()
-
Uses of ResultBatch in com.impossibl.postgres.protocol
Methods in com.impossibl.postgres.protocol that return ResultBatch Modifier and Type Method Description abstract ResultBatch
RequestExecutorHandlers.AnyQueryResult. getBatch()
ResultBatch
RequestExecutorHandlers.ExecuteResult. getBatch()
ResultBatch
RequestExecutorHandlers.QueryResult. getBatch()
ResultBatch
ResultBatch. touch(Object hint)
Methods in com.impossibl.postgres.protocol that return types with arguments of type ResultBatch Modifier and Type Method Description List<ResultBatch>
RequestExecutorHandlers.CompositeQueryResults. getBatches()
static List<ResultBatch>
ResultBatches. releaseAll(List<ResultBatch> resultBatches)
Methods in com.impossibl.postgres.protocol with parameters of type ResultBatch Modifier and Type Method Description static void
ResultBatches. transformFieldTypes(ResultBatch resultBatch, ResultBatches.Transformer transformer)
Method parameters in com.impossibl.postgres.protocol with type arguments of type ResultBatch Modifier and Type Method Description static List<ResultBatch>
ResultBatches. releaseAll(List<ResultBatch> resultBatches)
-
Uses of ResultBatch in com.impossibl.postgres.system
Methods in com.impossibl.postgres.system that return ResultBatch Modifier and Type Method Description protected ResultBatch
BasicContext. queryBatch(String queryTxt, long timeout)
Queries for a single (the first) result batch.protected ResultBatch
BasicContext. queryBatchPrepared(String queryTxt, FieldFormatRef[] paramFormats, io.netty.buffer.ByteBuf[] paramBuffers, long timeout)
Queries a single result batch (the first) via a parameterized query.ResultBatch
BasicContext. queryBatchPrepared(String queryTxt, Object[] paramValues, long timeout)
Queries a single result batch (the first) via a parameterized query. -
Uses of ResultBatch in com.impossibl.postgres.system.tables
Methods in com.impossibl.postgres.system.tables with parameters of type ResultBatch Modifier and Type Method Description static <R extends Table.Row,T extends Table<R>>
List<R>Tables. convertRows(Context context, T table, ResultBatch results)
PGTypeTable.Row
PGTypeTable. createRow(Context context, ResultBatch resultBatch, int rowIdx)
R
Table. createRow(Context context, ResultBatch resultBatch, int rowIdx)
Creates and instance of the row type of this table.static <T> T
Table. getFieldOfRow(ResultBatch resultBatch, int rowIdx, int fieldIdx, Context context, Class<T> targetType)
void
PGTypeTable.Row. load(Context context, ResultBatch resultBatch, int rowIdx)
void
Table.Row. load(Context context, ResultBatch resultBatch, int rowIdx)
-