Uses of Interface
com.impossibl.postgres.protocol.FieldFormatRef
-
Packages that use FieldFormatRef Package Description com.impossibl.postgres.jdbc com.impossibl.postgres.protocol com.impossibl.postgres.protocol.v30 com.impossibl.postgres.system -
-
Uses of FieldFormatRef in com.impossibl.postgres.jdbc
Methods in com.impossibl.postgres.jdbc with parameters of type FieldFormatRef Modifier and Type Method Description static Query
Query. create(String sqlText, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers)
static Query
Query. create(String statement, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers, ResultField[] resultFields)
-
Uses of FieldFormatRef in com.impossibl.postgres.protocol
Classes in com.impossibl.postgres.protocol that implement FieldFormatRef Modifier and Type Class Description class
FieldFormat
class
ResultField
Methods in com.impossibl.postgres.protocol with parameters of type FieldFormatRef Modifier and Type Method Description void
RequestExecutor. call(int functionId, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers, RequestExecutor.FunctionCallHandler handler)
Invokes the function specified byfunctionId
and returns its results.void
RequestExecutor. execute(String portalName, String statementName, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers, FieldFormatRef[] resultFieldFormats, int maxRows, RequestExecutor.ExecuteHandler handler)
Uses the "extended" query protocol to execute a previously prepared query.void
RequestExecutor. query(String sql, String portalName, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers, FieldFormatRef[] resultFieldFormats, int maxRows, RequestExecutor.ExtendedQueryHandler handler)
Uses the "extended" query protocol to execute the given query. -
Uses of FieldFormatRef in com.impossibl.postgres.protocol.v30
Constructors in com.impossibl.postgres.protocol.v30 with parameters of type FieldFormatRef Constructor Description FunctionCallRequest(int functionId, FieldFormatRef[] parameterFormats, io.netty.buffer.ByteBuf[] parameterBuffers, RequestExecutor.FunctionCallHandler handler)
-
Uses of FieldFormatRef in com.impossibl.postgres.system
Methods in com.impossibl.postgres.system with parameters of type FieldFormatRef Modifier and Type Method Description 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.
-