Uses of Interface
org.mariadb.jdbc.client.Completion
-
-
Uses of Completion in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as Completion Modifier and Type Field Description protected Completion
Statement. currResult
current resultsFields in org.mariadb.jdbc with type parameters of type Completion Modifier and Type Field Description protected java.util.List<Completion>
Statement. results
last execution resultsMethods in org.mariadb.jdbc that return types with arguments of type Completion Modifier and Type Method Description private java.util.List<Completion>
ServerPreparedStatement. executeBunch(java.lang.String cmd, int index, int maxCmd)
private java.util.List<Completion>
ServerPreparedStatement. executeBunchPrepare(java.lang.String cmd, int index, int maxCmd)
java.util.List<Completion>
Statement. executeInternalBatchPipeline()
Execute batch pipelining commands (sending all client message, then reading results) (batches cannot contain results-set, so cannot fill receiving socket buffer while sending buffer is full)java.util.List<Completion>
Statement. executeInternalBatchStandard()
basic implementation Send batch query per query. -
Uses of Completion in org.mariadb.jdbc.client
Methods in org.mariadb.jdbc.client that return types with arguments of type Completion Modifier and Type Method Description java.util.List<Completion>
Client. execute(ClientMessage message, boolean canRedo)
Send client message and read resultjava.util.List<Completion>
Client. execute(ClientMessage message, Statement stmt, boolean canRedo)
Send client message and read resultjava.util.List<Completion>
Client. execute(ClientMessage message, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
Send client message and read resultjava.util.List<Completion>
Client. executePipeline(ClientMessage[] messages, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
Send client messages pipelining and read resultMethod parameters in org.mariadb.jdbc.client with type arguments of type Completion Modifier and Type Method Description void
Client. readStreamingResults(java.util.List<Completion> completions, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
Read results -
Uses of Completion in org.mariadb.jdbc.client.impl
Methods in org.mariadb.jdbc.client.impl that return Completion Modifier and Type Method Description Completion
StandardClient. readPacket(ClientMessage message)
Read a MySQL packet from socketCompletion
StandardClient. readPacket(Statement stmt, ClientMessage message, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
Read server response packet.Methods in org.mariadb.jdbc.client.impl that return types with arguments of type Completion Modifier and Type Method Description java.util.List<Completion>
MultiPrimaryClient. execute(ClientMessage message, boolean canRedo)
java.util.List<Completion>
MultiPrimaryClient. execute(ClientMessage message, Statement stmt, boolean canRedo)
java.util.List<Completion>
MultiPrimaryClient. execute(ClientMessage message, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
MultiPrimaryReplicaClient. execute(ClientMessage message, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
ReplayClient. execute(ClientMessage message, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
StandardClient. execute(ClientMessage message, boolean canRedo)
java.util.List<Completion>
StandardClient. execute(ClientMessage message, Statement stmt, boolean canRedo)
java.util.List<Completion>
StandardClient. execute(ClientMessage message, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
MultiPrimaryClient. executePipeline(ClientMessage[] messages, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
MultiPrimaryReplicaClient. executePipeline(ClientMessage[] messages, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
ReplayClient. executePipeline(ClientMessage[] messages, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
StandardClient. executePipeline(ClientMessage[] messages, Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, boolean canRedo)
java.util.List<Completion>
StandardClient. readResponse(Statement stmt, ClientMessage message, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
Read server responses for a client messageMethod parameters in org.mariadb.jdbc.client.impl with type arguments of type Completion Modifier and Type Method Description private void
StandardClient. readResults(Statement stmt, ClientMessage message, java.util.List<Completion> completions, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
void
MultiPrimaryClient. readStreamingResults(java.util.List<Completion> completions, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
void
MultiPrimaryReplicaClient. readStreamingResults(java.util.List<Completion> completions, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
void
StandardClient. readStreamingResults(java.util.List<Completion> completions, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion)
-
Uses of Completion in org.mariadb.jdbc.client.result
Classes in org.mariadb.jdbc.client.result that implement Completion Modifier and Type Class Description class
CompleteResult
Result-set that will retrieve all rows immediately before returning the result-set.class
Result
Result-set commonclass
StreamingResult
Streaming result-set implementation.class
UpdatableResult
Updatable result implementation -
Uses of Completion in org.mariadb.jdbc.export
Method parameters in org.mariadb.jdbc.export with type arguments of type Completion Modifier and Type Method Description java.sql.BatchUpdateException
ExceptionFactory. createBatchUpdate(java.util.List<Completion> res, int length, int[] responseMsg, java.sql.SQLException sqle)
Create a BatchUpdateException, filling successful updatesjava.sql.BatchUpdateException
ExceptionFactory. createBatchUpdate(java.util.List<Completion> res, int length, java.sql.SQLException sqle)
Create a BatchUpdateException, filling successful updates -
Uses of Completion in org.mariadb.jdbc.message
Methods in org.mariadb.jdbc.message that return Completion Modifier and Type Method Description default Completion
ClientMessage. readPacket(Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, Reader reader, Writer writer, Context context, ExceptionFactory exceptionFactory, ClosableLock lock, boolean traceEnable, ClientMessage message, java.util.function.Consumer<java.lang.String> redirectFct)
default packet resultset parser -
Uses of Completion in org.mariadb.jdbc.message.client
Methods in org.mariadb.jdbc.message.client that return Completion Modifier and Type Method Description Completion
PrepareExecutePacket. readPacket(Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, Reader reader, Writer writer, Context context, ExceptionFactory exceptionFactory, ClosableLock lock, boolean traceEnable, ClientMessage message, java.util.function.Consumer<java.lang.String> redirectFct)
Completion
PreparePacket. readPacket(Statement stmt, int fetchSize, long maxRows, int resultSetConcurrency, int resultSetType, boolean closeOnCompletion, Reader reader, Writer writer, Context context, ExceptionFactory exceptionFactory, ClosableLock lock, boolean traceEnable, ClientMessage message, java.util.function.Consumer<java.lang.String> redirectFct)
-
Uses of Completion in org.mariadb.jdbc.message.server
Classes in org.mariadb.jdbc.message.server that implement Completion Modifier and Type Class Description class
CachedPrepareResultPacket
Prepare packet result with flag indicating useclass
OkPacket
Ok packet parser see https://mariadb.com/kb/en/ok_packet/class
PrepareResultPacket
Prepare result packet
-