Uses of Class
com.blackrook.sql.SQLConnection
Packages that use SQLConnection
Package
Description
Contains classes relevant to querying SQL databases.
Contains Utility classes.
-
Uses of SQLConnection in com.blackrook.sql
Methods in com.blackrook.sql that return SQLConnectionModifier and TypeMethodDescriptionSQLPool.getAvailableConnection()
Retrieves an available connection from the pool.SQLPool.getAvailableConnection
(long waitMillis) Retrieves an available connection from the pool.SQLConnector.getConnection()
Returns a new, opened JDBC Connection using the credentials stored with this connector.Methods in com.blackrook.sql with parameters of type SQLConnectionModifier and TypeMethodDescriptionvoid
SQLPool.releaseConnection
(SQLConnection connection) Releases a connection back to the pool. -
Uses of SQLConnection in com.blackrook.sql.util
Methods in com.blackrook.sql.util with parameters of type SQLConnectionModifier and TypeMethodDescriptionvoid
SQLConnectionConsumer.accept
(SQLConnection connection) Accepts the connection, does something with it, and returns nothing.SQLConnectionFunction.apply
(SQLConnection connection) Accepts the connection, does something with it, and returns a result.