1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
* HA-JDBC: High-Availability JDBC
* Copyright (c) 2004-2008 Paul Ferraro
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Contact: ferraro@users.sourceforge.net
*/
package net.sf.hajdbc.sql.pool;
import java.io.PrintWriter;
import java.sql.SQLException;
import javax.naming.NamingException;
import javax.naming.Reference;
import javax.sql.PooledConnection;
import net.sf.hajdbc.sql.CommonDataSourceProxy;
/**
* @author Paul Ferraro
*
*/
public class ConnectionPoolDataSource extends CommonDataSourceProxy<javax.sql.ConnectionPoolDataSource> implements javax.sql.ConnectionPoolDataSource
{
/**
* Constructs a new ConnectionPoolDataSource
*/
public ConnectionPoolDataSource()
{
super(new ConnectionPoolDataSourceFactory());
}
/**
* @see javax.sql.ConnectionPoolDataSource#getPooledConnection()
*/
@Override
public PooledConnection getPooledConnection() throws SQLException
{
return this.getProxy().getPooledConnection();
}
/**
* @see javax.sql.ConnectionPoolDataSource#getPooledConnection(java.lang.String, java.lang.String)
*/
@Override
public PooledConnection getPooledConnection(String user, String password) throws SQLException
{
return this.getProxy().getPooledConnection(user, password);
}
/**
* @see javax.sql.CommonDataSource#getLoginTimeout()
*/
@Override
public int getLoginTimeout() throws SQLException
{
return this.getProxy().getLoginTimeout();
}
/**
* @see javax.sql.CommonDataSource#getLogWriter()
*/
@Override
public PrintWriter getLogWriter() throws SQLException
{
return this.getProxy().getLogWriter();
}
/**
* @see javax.sql.CommonDataSource#setLoginTimeout(int)
*/
@Override
public void setLoginTimeout(int timeout) throws SQLException
{
this.getProxy().setLoginTimeout(timeout);
}
/**
* @see javax.sql.CommonDataSource#setLogWriter(java.io.PrintWriter)
*/
@Override
public void setLogWriter(PrintWriter writer) throws SQLException
{
this.getProxy().setLogWriter(writer);
}
/**
* @see javax.naming.Referenceable#getReference()
*/
@Override
public Reference getReference() throws NamingException
{
return new ConnectionPoolDataSourceReference(this.getCluster(), this.getConfig());
}
// Java7 Compat
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
throw new java.sql.SQLFeatureNotSupportedException();
}
}
|