Uses of Class
org.mariadb.jdbc.BasePreparedStatement
-
-
Uses of BasePreparedStatement in org.mariadb.jdbc
Subclasses of BasePreparedStatement in org.mariadb.jdbc Modifier and Type Class Description class
BaseCallableStatement
Common methods for function/stored procedureclass
ClientPreparedStatement
Client side prepare statement.class
FunctionStatement
Function callable statement implementationclass
ProcedureStatement
Procedure callable statementclass
ServerPreparedStatement
Server prepare statement. -
Uses of BasePreparedStatement in org.mariadb.jdbc.client
Methods in org.mariadb.jdbc.client with parameters of type BasePreparedStatement 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 cache -
Uses of BasePreparedStatement in org.mariadb.jdbc.client.context
Methods in org.mariadb.jdbc.client.context with parameters of type BasePreparedStatement 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)
-
Uses of BasePreparedStatement in org.mariadb.jdbc.client.impl
Methods in org.mariadb.jdbc.client.impl with parameters of type BasePreparedStatement 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)
-
Uses of BasePreparedStatement in org.mariadb.jdbc.export
Methods in org.mariadb.jdbc.export with parameters of type BasePreparedStatement Modifier and Type Method Description void
Prepare. decrementUse(Client con, BasePreparedStatement preparedStatement)
Decrement use of prepare. -
Uses of BasePreparedStatement in org.mariadb.jdbc.message.client
Fields in org.mariadb.jdbc.message.client declared as BasePreparedStatement Modifier and Type Field Description private BasePreparedStatement
BulkExecutePacket. prep
Methods in org.mariadb.jdbc.message.client that return BasePreparedStatement Modifier and Type Method Description BasePreparedStatement
BulkExecutePacket. prep()
BasePreparedStatement
RedoableWithPrepareClientMessage. prep()
Server prepare statement callerConstructors in org.mariadb.jdbc.message.client with parameters of type BasePreparedStatement Constructor Description BulkExecutePacket(Prepare prepareResult, java.util.List<Parameters> batchParameterList, java.lang.String command, BasePreparedStatement prep)
Constructor -
Uses of BasePreparedStatement in org.mariadb.jdbc.message.server
Fields in org.mariadb.jdbc.message.server with type parameters of type BasePreparedStatement Modifier and Type Field Description private java.util.List<BasePreparedStatement>
CachedPrepareResultPacket. statements
Methods in org.mariadb.jdbc.message.server with parameters of type BasePreparedStatement Modifier and Type Method Description void
CachedPrepareResultPacket. decrementUse(Client con, BasePreparedStatement preparedStatement)
void
PrepareResultPacket. decrementUse(Client con, BasePreparedStatement preparedStatement)
Decrement use of prepare packet, so closing it if last usedvoid
CachedPrepareResultPacket. incrementUse(BasePreparedStatement preparedStatement)
Increment use of prepare statement.
-