Uses of Class
org.mariadb.jdbc.Connection
-
Packages that use Connection Package Description org.mariadb.jdbc org.mariadb.jdbc.export org.mariadb.jdbc.pool org.mariadb.jdbc.util.timeout -
-
Uses of Connection in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as Connection Modifier and Type Field Description protected Connection
Statement. con
connectionprivate Connection
DatabaseMetaData. connection
private Connection
MariaDbPoolConnection. connection
Fields in org.mariadb.jdbc with type parameters of type Connection Modifier and Type Field Description private static java.util.Map<javax.transaction.xa.Xid,Connection>
MariaDbPoolPinnedConnection. xidToConnection
Methods in org.mariadb.jdbc that return Connection Modifier and Type Method Description Connection
Driver. connect(java.lang.String url, java.util.Properties props)
Connect to the given connection string.static Connection
Driver. connect(Configuration configuration)
Connect according to configurationConnection
DatabaseMetaData. getConnection()
Connection
MariaDbPoolConnection. getConnection()
Connection
Statement. getConnection()
Retrieves theConnection
object that produced thisStatement
object.Methods in org.mariadb.jdbc with parameters of type Connection Modifier and Type Method Description private java.util.Map<java.lang.String[],java.lang.String>
DatabaseMetaData. getExtImportedKeys(java.lang.String tableName, Connection connection)
Constructors in org.mariadb.jdbc with parameters of type Connection Constructor Description BaseCallableStatement(java.lang.String sql, Connection con, ClosableLock lock, java.lang.String databaseName, java.lang.String procedureName, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
ConstructorBasePreparedStatement(java.lang.String sql, Connection con, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
ConstructorClientPreparedStatement(java.lang.String sql, Connection con, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
Client prepare statement constructorDatabaseMetaData(Connection connection, Configuration conf)
Constructor.FunctionStatement(Connection con, java.lang.String databaseName, java.lang.String procedureName, java.lang.String arguments, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency)
Constructor of function callable statementMariaDbPoolConnection(Connection connection)
Constructor.MariaDbPoolPinnedConnection(Connection connection)
Constructor.ProcedureStatement(Connection con, java.lang.String sql, java.lang.String databaseName, java.lang.String procedureName, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency)
ConstructorServerPreparedStatement(java.lang.String sql, Connection con, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
Server prepare statement constructorStatement(Connection con, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
Constructor -
Uses of Connection in org.mariadb.jdbc.export
Fields in org.mariadb.jdbc.export declared as Connection Modifier and Type Field Description private Connection
ExceptionFactory. connection
Methods in org.mariadb.jdbc.export with parameters of type Connection Modifier and Type Method Description private static java.lang.String
ExceptionFactory. buildMsgText(java.lang.String initialMessage, long threadId, Configuration conf, java.lang.String sql, int errorCode, Connection connection)
ExceptionFactory
ExceptionFactory. setConnection(Connection connection)
Set connection to factoryConstructors in org.mariadb.jdbc.export with parameters of type Connection Constructor Description ExceptionFactory(Connection connection, MariaDbPoolConnection poolConnection, Configuration conf, HostAddress hostAddress, long threadId, java.sql.Statement statement)
SqlExceptionFactory(Connection connection, MariaDbPoolConnection poolConnection, Configuration conf, HostAddress hostAddress, long threadId, java.sql.Statement statement, java.lang.String sql)
Constructor of Exception factory with SQL -
Uses of Connection in org.mariadb.jdbc.pool
Methods in org.mariadb.jdbc.pool with parameters of type Connection Modifier and Type Method Description private void
Pool. silentAbortConnection(Connection con)
private void
Pool. silentCloseConnection(Connection con)
Constructors in org.mariadb.jdbc.pool with parameters of type Connection Constructor Description MariaDbInnerPoolConnection(Connection connection)
Constructor. -
Uses of Connection in org.mariadb.jdbc.util.timeout
Fields in org.mariadb.jdbc.util.timeout declared as Connection Modifier and Type Field Description private Connection
QueryTimeoutHandlerImpl. conn
Constructors in org.mariadb.jdbc.util.timeout with parameters of type Connection Constructor Description QueryTimeoutHandlerImpl(Connection conn, ClosableLock lock)
-