MysqlConnectionPoolDataSource.java
上传用户:sxlinghang
上传日期:2022-07-20
资源大小:1405k
文件大小:3k
源码类别:

数据库编程

开发平台:

Java

  1. /*
  2.    Copyright (C) 2002 MySQL AB
  3.    
  4.       This program is free software; you can redistribute it and/or modify
  5.       it under the terms of the GNU General Public License as published by
  6.       the Free Software Foundation; either version 2 of the License, or
  7.       (at your option) any later version.
  8.    
  9.       This program is distributed in the hope that it will be useful,
  10.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.       GNU General Public License for more details.
  13.    
  14.       You should have received a copy of the GNU General Public License
  15.       along with this program; if not, write to the Free Software
  16.       Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.       
  18.  */
  19. package com.mysql.jdbc.jdbc2.optional;
  20. import java.sql.Connection;
  21. import java.sql.SQLException;
  22. import javax.sql.ConnectionPoolDataSource;
  23. import javax.sql.PooledConnection;
  24. /**
  25.  * This class is used to obtain a physical connection and instantiate and return  
  26.  * a MysqlPooledConnection.  J2EE application servers map client calls to 
  27.  * dataSource.getConnection to this class based upon mapping set within deployment 
  28.  * descriptor.  This class extends MysqlDataSource.
  29.  *
  30.  * @see javax.sql.PooledConnection
  31.  * @see javax.sql.ConnectionPoolDataSource
  32.  * @see org.gjt.mm.mysql.MysqlDataSource
  33.  * @author Todd Wolff <todd.wolff_at_prodigy.net>
  34.  */
  35. public class MysqlConnectionPoolDataSource
  36.     extends MysqlDataSource
  37.     implements ConnectionPoolDataSource {
  38.     //~ Methods ...............................................................
  39.     /**
  40.      * Returns a pooled connection.
  41.      *
  42.      * @exception SQLException if an error occurs
  43.      * @return a PooledConnection
  44.      */
  45.     public synchronized PooledConnection getPooledConnection()
  46.                                                       throws SQLException {
  47.         Connection connection = getConnection();
  48.         MysqlPooledConnection mysqlPooledConnection = new MysqlPooledConnection(
  49.                                                               connection);
  50.         return mysqlPooledConnection;
  51.     }
  52.     /**
  53.      * This method is invoked by the container.  Obtains physical connection using 
  54.      * mySql.Driver class and returns a mysqlPooledConnection object.
  55.      *
  56.      * @param s user name
  57.      * @param s1 password
  58.      * @exception SQLException if an error occurs
  59.      * @return a PooledConnection
  60.      */
  61.     public synchronized PooledConnection getPooledConnection(String s, 
  62.                                                              String s1)
  63.                                                       throws SQLException {
  64.         Connection connection = getConnection(s, s1);
  65.         MysqlPooledConnection mysqlPooledConnection = new MysqlPooledConnection(
  66.                                                               connection);
  67.         return mysqlPooledConnection;
  68.     }
  69. }