Uses of Interface
org.mariadb.jdbc.export.Prepare
-
Packages that use Prepare Package Description org.mariadb.jdbc org.mariadb.jdbc.client org.mariadb.jdbc.client.context org.mariadb.jdbc.client.impl org.mariadb.jdbc.message.client org.mariadb.jdbc.message.server -
-
Uses of Prepare in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as Prepare Modifier and Type Field Description protected Prepare
BasePreparedStatement. prepareResult
PREPARE command resultMethods in org.mariadb.jdbc with parameters of type Prepare Modifier and Type Method Description void
BasePreparedStatement. setPrepareResult(Prepare prepareResult)
Set PREPARE result -
Uses of Prepare in org.mariadb.jdbc.client
Methods in org.mariadb.jdbc.client that return Prepare Modifier and Type Method Description Prepare
PrepareCache. get(java.lang.String key, BasePreparedStatement preparedStatement)
Get cache value for keyPrepare
Context. getPrepareCacheCmd(java.lang.String sql, BasePreparedStatement preparedStatement)
Return cached prepare if key matchPrepare
PrepareCache. put(java.lang.String key, Prepare result, BasePreparedStatement preparedStatement)
Add a prepare cache valuePrepare
Context. putPrepareCacheCmd(java.lang.String sql, Prepare result, BasePreparedStatement preparedStatement)
Put prepare result in cacheMethods in org.mariadb.jdbc.client with parameters of type Prepare Modifier and Type Method Description void
Client. closePrepare(Prepare prepare)
Close prepare commandPrepare
PrepareCache. put(java.lang.String key, Prepare result, BasePreparedStatement preparedStatement)
Add a prepare cache valuePrepare
Context. putPrepareCacheCmd(java.lang.String sql, Prepare result, BasePreparedStatement preparedStatement)
Put prepare result in cache -
Uses of Prepare in org.mariadb.jdbc.client.context
Methods in org.mariadb.jdbc.client.context that return Prepare Modifier and Type Method Description Prepare
BaseContext. getPrepareCacheCmd(java.lang.String sql, BasePreparedStatement preparedStatement)
Prepare
BaseContext. putPrepareCacheCmd(java.lang.String sql, Prepare result, BasePreparedStatement preparedStatement)
Methods in org.mariadb.jdbc.client.context with parameters of type Prepare Modifier and Type Method Description Prepare
BaseContext. putPrepareCacheCmd(java.lang.String sql, Prepare result, BasePreparedStatement preparedStatement)
-
Uses of Prepare in org.mariadb.jdbc.client.impl
Methods in org.mariadb.jdbc.client.impl that return Prepare Modifier and Type Method Description Prepare
PrepareCache. get(java.lang.String key, BasePreparedStatement preparedStatement)
Prepare
PrepareCache. put(java.lang.String key, Prepare result, BasePreparedStatement preparedStatement)
Methods in org.mariadb.jdbc.client.impl with parameters of type Prepare Modifier and Type Method Description void
MultiPrimaryClient. closePrepare(Prepare prepare)
void
MultiPrimaryReplicaClient. closePrepare(Prepare prepare)
void
StandardClient. closePrepare(Prepare prepare)
Prepare
PrepareCache. put(java.lang.String key, Prepare result, BasePreparedStatement preparedStatement)
-
Uses of Prepare in org.mariadb.jdbc.message.client
Fields in org.mariadb.jdbc.message.client declared as Prepare Modifier and Type Field Description private Prepare
BulkExecutePacket. prepareResult
private Prepare
ExecutePacket. prepareResult
Methods in org.mariadb.jdbc.message.client with parameters of type Prepare Modifier and Type Method Description int
BulkExecutePacket. encode(Writer writer, Context context, Prepare newPrepareResult)
int
ExecutePacket. encode(Writer writer, Context context, Prepare newPrepareResult)
int
PrepareExecutePacket. encode(Writer writer, Context context, Prepare newPrepareResult)
default int
RedoableClientMessage. encode(Writer writer, Context context, Prepare newPrepareResult)
Encode command to packetint
RedoableWithPrepareClientMessage. encode(Writer writer, Context context, Prepare newPrepareResult)
encoder method in case of failover, passing new prepared objectdefault int
RedoableClientMessage. reEncode(Writer writer, Context context, Prepare newPrepareResult)
re-encode command to packetdefault int
RedoableWithPrepareClientMessage. reEncode(Writer writer, Context context, Prepare newPrepareResult)
re-encoder method in case of failover, passing new prepared objectConstructors in org.mariadb.jdbc.message.client with parameters of type Prepare Constructor Description BulkExecutePacket(Prepare prepareResult, java.util.List<Parameters> batchParameterList, java.lang.String command, BasePreparedStatement prep)
ConstructorExecutePacket(Prepare prepareResult, Parameters parameters, java.lang.String command, ServerPreparedStatement prep, java.io.InputStream localInfileInputStream)
Constructor -
Uses of Prepare in org.mariadb.jdbc.message.server
Classes in org.mariadb.jdbc.message.server that implement Prepare Modifier and Type Class Description class
CachedPrepareResultPacket
Prepare packet result with flag indicating useclass
PrepareResultPacket
Prepare result packet
-