01: /*
02: * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/db/MVNDataSource.java,v 1.4 2007/09/26 04:11:06 minhnn Exp $
03: * $Author: minhnn $
04: * $Revision: 1.4 $
05: * $Date: 2007/09/26 04:11:06 $
06: *
07: * ====================================================================
08: *
09: * Copyright (C) 2002-2007 by MyVietnam.net
10: *
11: * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12: * MUST remain intact in the scripts and source code.
13: *
14: * This library is free software; you can redistribute it and/or
15: * modify it under the terms of the GNU Lesser General Public
16: * License as published by the Free Software Foundation; either
17: * version 2.1 of the License, or (at your option) any later version.
18: *
19: * This library is distributed in the hope that it will be useful,
20: * but WITHOUT ANY WARRANTY; without even the implied warranty of
21: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22: * Lesser General Public License for more details.
23: *
24: * You should have received a copy of the GNU Lesser General Public
25: * License along with this library; if not, write to the Free Software
26: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27: *
28: * Correspondence and Marketing Questions can be sent to:
29: * info at MyVietnam net
30: *
31: * @author: Minh Nguyen
32: */
33: package net.myvietnam.mvncore.db;
34:
35: import java.sql.Connection;
36: import java.sql.SQLException;
37:
38: import org.apache.commons.lang.NotImplementedException;
39:
40: /**
41: * Implementation of DataSource based on built-in connection pool
42: *
43: */
44: public class MVNDataSource extends AbstractDataSource {
45:
46: private boolean autoCommit;
47:
48: public MVNDataSource(boolean autoCommit) {
49: this .autoCommit = autoCommit;
50: }
51:
52: public Connection getConnection() throws SQLException {
53: Connection connection = DBUtils.getConnection();
54: if (connection.getAutoCommit() != autoCommit) {
55: connection.setAutoCommit(autoCommit);
56: }
57: return connection;
58: }
59:
60: public Connection getConnection(String username, String password)
61: throws SQLException {
62: throw new NotImplementedException("getConnection");
63: }
64:
65: }
|