|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hsqldb.jdbc.JDBCPool
public class JDBCPool
A connection pool for HyperSQL connections. This implementation of
DataSource
is dedicated to HyperSQL and
guarantees all connection states are automatically reset when a connection
is reused.
The methods of the parent class,
JDBCCommonDataSource
are used to specify the database URL, user,
password, and / or connection properties.
Constructor Summary | |
---|---|
JDBCPool()
Creates a connection pool with the maximum size of 8. |
|
JDBCPool(int size)
Creates a connection pool with the given maximum size. |
Method Summary | ||
---|---|---|
void |
close(int wait)
Closes the pool immediately. |
|
void |
connectionClosed(ConnectionEvent event)
|
|
void |
connectionErrorOccurred(ConnectionEvent event)
|
|
Connection |
getConnection()
Retrieves a new connection using the properties that have already been set. |
|
Connection |
getConnection(String username,
String password)
Retrieves a new connection using the given username and password, and the database url that has been set. |
|
String |
getDatabase()
Synonym for getUrl(). |
|
String |
getDatabaseName()
Synonym for getUrl(). |
|
String |
getDataSourceName()
Retrieves the name of the data source. |
|
String |
getDescription()
Retrieves the description of the data source. |
|
int |
getLoginTimeout()
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database. |
|
PrintWriter |
getLogWriter()
Retrieves the log writer for this DataSource
object. |
|
Logger |
getParentLogger()
Return the parent Logger of all the Loggers used by this data source. |
|
Reference |
getReference()
Retrieves the Reference of this object. |
|
String |
getUrl()
Retrieves the jdbc database connection url attribute. |
|
String |
getUser()
Retrieves the user name for the connection. |
|
boolean |
isWrapperFor(Class<?> iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does. |
|
void |
setDatabase(String database)
Synonym for setUrl(String). |
|
void |
setDatabaseName(String databaseName)
Synonym for setUrl(String). |
|
void |
setLoginTimeout(int seconds)
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database. |
|
void |
setLogWriter(PrintWriter out)
Sets the log writer for this DataSource
object to the given java.io.PrintWriter object. |
|
void |
setPassword(String password)
Sets the password for the user name. |
|
void |
setProperties(Properties props)
Sets connection properties. |
|
void |
setUrl(String url)
Sets the jdbc database URL. |
|
void |
setUser(String user)
Sets the user name. |
|
void |
statementClosed(StatementEvent event)
|
|
void |
statementErrorOccurred(StatementEvent event)
|
|
|
unwrap(Class<T> iface)
Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JDBCPool()
getConnection()
is called.
public JDBCPool(int size)
getConnection()
is called.
size
- int maximum size of the poolMethod Detail |
---|
public Connection getConnection() throws SQLException
getConnection
in interface DataSource
SQLException
- if a database access error occurspublic Connection getConnection(String username, String password) throws SQLException
getConnection
in interface DataSource
username
- the database user on whose behalf the connection is
being madepassword
- the user's password
SQLException
- if a database access error occurspublic <T> T unwrap(Class<T> iface) throws SQLException
unwrap
recursively on the wrapped object
or a proxy for that result. If the receiver is not a
wrapper and does not implement the interface, then an SQLException
is thrown.
unwrap
in interface Wrapper
iface
- A Class defining an interface that the result must implement.
SQLException
- If no object found that implements the interfacepublic boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor
on the wrapped
object. If this does not implement the interface and is not a wrapper, return false.
This method should be implemented as a low-cost operation compared to unwrap
so that
callers can use this method to avoid expensive unwrap
calls that may fail. If this method
returns true then calling unwrap
with the same argument should succeed.
isWrapperFor
in interface Wrapper
iface
- a Class defining an interface.
SQLException
- if an error occurs while determining whether this is a wrapper
for an object with the given interface.public Reference getReference() throws NamingException
getReference
in interface Referenceable
NamingException
- If a naming exception was encountered
while retrieving the reference.public void connectionClosed(ConnectionEvent event)
connectionClosed
in interface ConnectionEventListener
public void connectionErrorOccurred(ConnectionEvent event)
connectionErrorOccurred
in interface ConnectionEventListener
public void statementClosed(StatementEvent event)
statementClosed
in interface StatementEventListener
public void statementErrorOccurred(StatementEvent event)
statementErrorOccurred
in interface StatementEventListener
public PrintWriter getLogWriter() throws SQLException
Retrieves the log writer for this DataSource
object.
The log writer is a character output stream to which all logging
and tracing messages for this data source will be
printed. This includes messages printed by the methods of this
object, messages printed by methods of other objects manufactured
by this object, and so on. Messages printed to a data source
specific log writer are not printed to the log writer associated
with the java.sql.DriverManager
class. When a
DataSource
object is
created, the log writer is initially null; in other words, the
default is for logging to be disabled.
getLogWriter
in interface CommonDataSource
SQLException
- if a database access error occurssetLogWriter(java.io.PrintWriter)
public void setLogWriter(PrintWriter out) throws SQLException
Sets the log writer for this DataSource
object to the given java.io.PrintWriter
object.
The log writer is a character output stream to which all logging
and tracing messages for this data source will be
printed. This includes messages printed by the methods of this
object, messages printed by methods of other objects manufactured
by this object, and so on. Messages printed to a data source-
specific log writer are not printed to the log writer associated
with the java.sql.DriverManager
class. When a
DataSource
object is created the log writer is
initially null; in other words, the default is for logging to be
disabled.
setLogWriter
in interface CommonDataSource
out
- the new log writer; to disable logging, set to null
SQLException
- if a database access error occursgetLogWriter()
public void setLoginTimeout(int seconds) throws SQLException
Sets the maximum time in seconds that this data source will wait
while attempting to connect to a database. A value of zero
specifies that the timeout is the default system timeout
if there is one; otherwise, it specifies that there is no timeout.
When a DataSource
object is created, the login timeout is
initially zero.
setLoginTimeout
in interface CommonDataSource
seconds
- the data source login time limit
SQLException
- if a database access error occurs.getLoginTimeout()
public int getLoginTimeout() throws SQLException
DataSource
object is created, the login timeout is
initially zero.
getLoginTimeout
in interface CommonDataSource
SQLException
- if a database access error occurs.setLoginTimeout(int)
public String getDescription()
public String getDataSourceName()
public String getDatabaseName()
public String getDatabase()
public String getUrl()
public String getUser()
public void setDatabaseName(String databaseName)
databaseName
- the new value for the attributepublic void setDatabase(String database)
database
- the new value for the attributepublic void setUrl(String url)
url
- the new value of this object's jdbc database connection
url attributepublic void setPassword(String password)
password
- the passwordpublic void setUser(String user)
user
- the user idpublic void setProperties(Properties props)
props
- properties. If null, then existing properties will be
cleared/replaced.public Logger getParentLogger() throws SQLFeatureNotSupportedException
SQLFeatureNotSupportedException
- if the data source does not use java.util.logging.- Since:
- JDK 1.7 M11 2010/09/10 (b123), HSQLDB 2.2.9
public void close(int wait) throws SQLException
wait
- int number of seconds to wait before closing the connections, maximum 60 seconds
SQLException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |