Uses of Class
org.mariadb.jdbc.MariaDbConnection
-
-
Uses of MariaDbConnection in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as MariaDbConnection Modifier and Type Field Description private MariaDbConnection
CallableParameterMetaData. con
private MariaDbConnection
MariaDbDatabaseMetaData. connection
private MariaDbConnection
MariaDbPooledConnection. connection
protected MariaDbConnection
MariaDbStatement. connection
the Connection object.private MariaDbConnection
MariaXaResource. connection
Methods in org.mariadb.jdbc that return MariaDbConnection Modifier and Type Method Description MariaDbConnection
MariaDbPooledConnection. getConnection()
Creates and returns aConnection
object that is a handle for the physical connection that thisPooledConnection
object represents.MariaDbConnection
MariaDbStatement. getConnection()
Gets the connection that created this statement.static MariaDbConnection
MariaDbConnection. newConnection(UrlParser urlParser, GlobalStateInfo globalInfo)
Create new connection Object.Methods in org.mariadb.jdbc with parameters of type MariaDbConnection Modifier and Type Method Description BasePrepareStatement
BasePrepareStatement. clone(MariaDbConnection connection)
Clone cached object.CallableFunctionStatement
CallableFunctionStatement. clone(MariaDbConnection connection)
Clone data.CallableProcedureStatement
CallableProcedureStatement. clone(MariaDbConnection connection)
Clone data.ClientSidePreparedStatement
ClientSidePreparedStatement. clone(MariaDbConnection connection)
Clone statement.MariaDbFunctionStatement
MariaDbFunctionStatement. clone(MariaDbConnection connection)
Clone statement.MariaDbProcedureStatement
MariaDbProcedureStatement. clone(MariaDbConnection connection)
Clone statement.MariaDbStatement
MariaDbStatement. clone(MariaDbConnection connection)
Clone statement.ServerSidePreparedStatement
ServerSidePreparedStatement. clone(MariaDbConnection connection)
Clone statement.private static java.sql.ResultSet
MariaDbDatabaseMetaData. getImportedKeys(java.lang.String tableDef, java.lang.String tableName, java.lang.String catalog, MariaDbConnection connection)
Get imported keys.Constructors in org.mariadb.jdbc with parameters of type MariaDbConnection Constructor Description BasePrepareStatement(MariaDbConnection connection, int resultSetScrollType, int resultSetConcurrency, int autoGeneratedKeys, ExceptionFactory exceptionFactory)
Constructor.CallableFunctionStatement(MariaDbConnection connection, java.lang.String sql, int resultSetType, int resultSetConcurrency, ExceptionFactory exceptionFactory)
Constructor for getter/setter of callableStatement.CallableParameterMetaData(MariaDbConnection con, java.lang.String database, java.lang.String name, boolean isFunction)
Retrieve Callable metaData.CallableProcedureStatement(MariaDbConnection connection, java.lang.String sql, int resultSetScrollType, int resultSetConcurrency, ExceptionFactory exceptionFactory)
Constructor for getter/setter of callableStatement.ClientSidePreparedStatement(MariaDbConnection connection, java.lang.String sql, int resultSetScrollType, int resultSetConcurrency, int autoGeneratedKeys, ExceptionFactory exceptionFactory)
Constructor.MariaDbFunctionStatement(MariaDbConnection connection, java.lang.String databaseName, java.lang.String procedureName, java.lang.String arguments, int resultSetType, int resultSetConcurrency, ExceptionFactory exceptionFactory)
Specific implementation of CallableStatement to handle function call, represent by call like {?= call procedure-name[(arg1,arg2, ...)]}.MariaDbPooledConnection(MariaDbConnection connection)
Constructor.MariaDbProcedureStatement(java.lang.String query, MariaDbConnection connection, java.lang.String procedureName, java.lang.String database, int resultSetType, int resultSetConcurrency, ExceptionFactory exceptionFactory)
Specific implementation of CallableStatement to handle function call, represent by call like {?= call procedure-name[(arg1,arg2, ...)]}.MariaDbStatement(MariaDbConnection connection, int resultSetScrollType, int resultSetConcurrency, ExceptionFactory exceptionFactory)
Creates a new Statement.MariaXaConnection(MariaDbConnection connection)
MariaXaResource(MariaDbConnection connection)
ServerSidePreparedStatement(MariaDbConnection connection, java.lang.String sql, int resultSetScrollType, int resultSetConcurrency, int autoGeneratedKeys, ExceptionFactory exceptionFactory)
Constructor for creating Server prepared statement. -
Uses of MariaDbConnection in org.mariadb.jdbc.internal.com.read.resultset
Fields in org.mariadb.jdbc.internal.com.read.resultset declared as MariaDbConnection Modifier and Type Field Description private MariaDbConnection
UpdatableResultSet. connection
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.failover
Methods in org.mariadb.jdbc.internal.failover with parameters of type MariaDbConnection Modifier and Type Method Description void
AbstractMastersListener. prolog(long maxRows, MariaDbConnection connection, MariaDbStatement statement)
void
Listener. prolog(long maxRows, MariaDbConnection connection, MariaDbStatement statement)
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.failover.impl
Methods in org.mariadb.jdbc.internal.failover.impl with parameters of type MariaDbConnection Modifier and Type Method Description void
MastersSlavesListener. prolog(long maxRows, MariaDbConnection connection, MariaDbStatement statement)
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.protocol
Methods in org.mariadb.jdbc.internal.protocol with parameters of type MariaDbConnection Modifier and Type Method Description void
AbstractQueryProtocol. prolog(long maxRows, boolean hasProxy, MariaDbConnection connection, MariaDbStatement statement)
Preparation before command.void
Protocol. prolog(long maxRows, boolean hasProxy, MariaDbConnection connection, MariaDbStatement statement)
void
AbstractQueryProtocol. prologProxy(ServerPrepareResult serverPrepareResult, long maxRows, boolean hasProxy, MariaDbConnection connection, MariaDbStatement statement)
void
Protocol. prologProxy(ServerPrepareResult serverPrepareResult, long maxRows, boolean hasProxy, MariaDbConnection connection, MariaDbStatement statement)
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.util.dao
Methods in org.mariadb.jdbc.internal.util.dao with parameters of type MariaDbConnection Modifier and Type Method Description CloneableCallableStatement
CloneableCallableStatement. clone(MariaDbConnection connection)
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.util.exceptions
Fields in org.mariadb.jdbc.internal.util.exceptions declared as MariaDbConnection Modifier and Type Field Description private MariaDbConnection
ExceptionFactory. connection
Methods in org.mariadb.jdbc.internal.util.exceptions with parameters of type MariaDbConnection Modifier and Type Method Description private static java.sql.SQLException
ExceptionFactory. createException(java.lang.String initialMessage, java.lang.String sqlState, int errorCode, long threadId, Options options, MariaDbConnection connection, java.sql.Statement statement, java.lang.Exception cause)
ExceptionFactory
ExceptionFactory. raiseStatementError(MariaDbConnection connection, java.sql.Statement stmt)
Constructors in org.mariadb.jdbc.internal.util.exceptions with parameters of type MariaDbConnection Constructor Description ExceptionFactory(long threadId, Options options, MariaDbConnection connection, java.sql.Statement statement)
-
Uses of MariaDbConnection in org.mariadb.jdbc.internal.util.pool
Methods in org.mariadb.jdbc.internal.util.pool that return MariaDbConnection Modifier and Type Method Description MariaDbConnection
Pool. getConnection()
Retrieve new connection.MariaDbConnection
Pool. getConnection(java.lang.String username, java.lang.String password)
Get new connection from pool if user and password correspond to pool.Methods in org.mariadb.jdbc.internal.util.pool with parameters of type MariaDbConnection Modifier and Type Method Description private MariaDbPooledConnection
Pool. createPoolConnection(MariaDbConnection connection)
private void
Pool. initializePoolGlobalState(MariaDbConnection connection)
-