Uses of Class
org.mariadb.jdbc.Connection
-
Packages that use Connection Package Description org.mariadb.jdbc org.mariadb.jdbc.export -
-
Uses of Connection in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as Connection Modifier and Type Field Description protected Connection
Statement. con
connectionMethods in org.mariadb.jdbc that return Connection Modifier and Type Method Description Connection
Driver. connect(String url, 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.Constructors in org.mariadb.jdbc with parameters of type Connection Constructor Description BaseCallableStatement(String sql, Connection con, ReentrantLock lock, String databaseName, String procedureName, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
ConstructorBasePreparedStatement(String sql, Connection con, ReentrantLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
ConstructorClientPreparedStatement(String sql, Connection con, ReentrantLock 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, String databaseName, String procedureName, String arguments, ReentrantLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency)
Constructor of function callable statementMariaDbPoolConnection(Connection connection)
Constructor.ProcedureStatement(Connection con, String sql, String databaseName, String procedureName, ReentrantLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency)
ConstructorServerPreparedStatement(String sql, Connection con, ReentrantLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
Server prepare statement constructorStatement(Connection con, ReentrantLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, int autoGeneratedKeys, int resultSetType, int resultSetConcurrency, int defaultFetchSize)
Constructor -
Uses of Connection in org.mariadb.jdbc.export
Methods in org.mariadb.jdbc.export with parameters of type Connection Modifier and Type Method Description ExceptionFactory
ExceptionFactory. setConnection(Connection connection)
Set connection to factoryConstructors in org.mariadb.jdbc.export with parameters of type Connection Constructor Description SqlExceptionFactory(Connection connection, MariaDbPoolConnection poolConnection, Configuration conf, HostAddress hostAddress, long threadId, Statement statement, String sql)
Constructor of Exception factory with SQL
-