Package org.h2.jdbcx
Class JdbcConnectionPool
java.lang.Object
org.h2.jdbcx.JdbcConnectionPool
- All Implemented Interfaces:
Wrapper
,EventListener
,CommonDataSource
,ConnectionEventListener
,DataSource
,JdbcConnectionPoolBackwardsCompat
public final class JdbcConnectionPool
extends Object
implements DataSource, ConnectionEventListener, JdbcConnectionPoolBackwardsCompat
A simple standalone JDBC connection pool.
It is based on the
MiniConnectionPoolManager written by Christian d'Heureuse (Java 1.5)
. It is used as follows:
import java.sql.*; import org.h2.jdbcx.JdbcConnectionPool; public class Test { public static void main(String... args) throws Exception { JdbcConnectionPool cp = JdbcConnectionPool.create( "jdbc:h2:~/test", "sa", "sa"); for (String sql : args) { Connection conn = cp.getConnection(); conn.createStatement().execute(sql); conn.close(); } cp.dispose(); } }
-
Method Summary
Modifier and TypeMethodDescriptionvoid
connectionClosed
(ConnectionEvent event) INTERNALvoid
INTERNALstatic JdbcConnectionPool
Constructs a new connection pool for H2 databases.static JdbcConnectionPool
create
(ConnectionPoolDataSource dataSource) Constructs a new connection pool.void
dispose()
Closes all unused pooled connections.int
Returns the number of active (open) connections of this pool.Retrieves a connection from the connection pool.getConnection
(String user, String password) INTERNALint
Gets the maximum time in seconds to wait for a free connection.INTERNALint
Gets the maximum number of connections to use.[Not supported]boolean
isWrapperFor
(Class<?> iface) Checks if unwrap can return an object of this class.void
setLoginTimeout
(int seconds) Sets the maximum time in seconds to wait for a free connection.void
setLogWriter
(PrintWriter logWriter) INTERNALvoid
setMaxConnections
(int max) Sets the maximum number of connections to use from now on.<T> T
Return an object of this class if possible.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
Method Details
-
create
Constructs a new connection pool.- Parameters:
dataSource
- the data source to create connections- Returns:
- the connection pool
-
create
Constructs a new connection pool for H2 databases.- Parameters:
url
- the database URL of the H2 connectionuser
- the user namepassword
- the password- Returns:
- the connection pool
-
setMaxConnections
public void setMaxConnections(int max) Sets the maximum number of connections to use from now on. The default value is 10 connections.- Parameters:
max
- the maximum number of connections
-
getMaxConnections
public int getMaxConnections()Gets the maximum number of connections to use.- Returns:
- the max the maximum number of connections
-
getLoginTimeout
public int getLoginTimeout()Gets the maximum time in seconds to wait for a free connection.- Specified by:
getLoginTimeout
in interfaceCommonDataSource
- Specified by:
getLoginTimeout
in interfaceDataSource
- Returns:
- the timeout in seconds
-
setLoginTimeout
public void setLoginTimeout(int seconds) Sets the maximum time in seconds to wait for a free connection. The default timeout is 30 seconds. Calling this method with the value 0 will set the timeout to the default value.- Specified by:
setLoginTimeout
in interfaceCommonDataSource
- Specified by:
setLoginTimeout
in interfaceDataSource
- Parameters:
seconds
- the timeout, 0 meaning the default
-
dispose
public void dispose()Closes all unused pooled connections. Exceptions while closing are written to the log stream (if set). -
getConnection
Retrieves a connection from the connection pool. IfmaxConnections
connections are already in use, the method waits until a connection becomes available ortimeout
seconds elapsed. When the application is finished using the connection, it must close it in order to return it to the pool. If no connection becomes available within the given timeout, an exception with SQL state 08001 and vendor code 8001 is thrown.- Specified by:
getConnection
in interfaceDataSource
- Returns:
- a new Connection object.
- Throws:
SQLException
- when a new connection could not be established, or a timeout occurred
-
getConnection
INTERNAL- Specified by:
getConnection
in interfaceDataSource
-
connectionClosed
INTERNAL- Specified by:
connectionClosed
in interfaceConnectionEventListener
-
connectionErrorOccurred
INTERNAL- Specified by:
connectionErrorOccurred
in interfaceConnectionEventListener
-
getActiveConnections
public int getActiveConnections()Returns the number of active (open) connections of this pool. This is the number ofConnection
objects that have been issued by getConnection() for whichConnection.close()
has not yet been called.- Returns:
- the number of active connections.
-
getLogWriter
INTERNAL- Specified by:
getLogWriter
in interfaceCommonDataSource
- Specified by:
getLogWriter
in interfaceDataSource
-
setLogWriter
INTERNAL- Specified by:
setLogWriter
in interfaceCommonDataSource
- Specified by:
setLogWriter
in interfaceDataSource
-
unwrap
Return an object of this class if possible.- Specified by:
unwrap
in interfaceWrapper
- Parameters:
iface
- the class- Returns:
- this
- Throws:
SQLException
-
isWrapperFor
Checks if unwrap can return an object of this class.- Specified by:
isWrapperFor
in interfaceWrapper
- Parameters:
iface
- the class- Returns:
- whether or not the interface is assignable from this class
- Throws:
SQLException
-
getParentLogger
[Not supported]- Specified by:
getParentLogger
in interfaceCommonDataSource
-