Project

General

Profile

1 4951 daigle
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that manages database access
4
 *             information.
5
 *  Copyright: 2009 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 *    Authors: Michael Daigle
8
 *
9
 *   '$Author: daigle $'
10
 *     '$Date: 2009-03-23 13:56:56 -0800 (Mon, 23 Mar 2009) $'
11
 * '$Revision: 4854 $'
12
 *
13
 * This program is free software; you can redistribute it and/or modify
14
 * it under the terms of the GNU General Public License as published by
15
 * the Free Software Foundation; either version 2 of the License, or
16
 * (at your option) any later version.
17
 *
18
 * This program is distributed in the hope that it will be useful,
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 * GNU General Public License for more details.
22
 *
23
 * You should have received a copy of the GNU General Public License
24
 * along with this program; if not, write to the Free Software
25
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
 */
27
28
package edu.ucsb.nceas.shared;
29
30
import java.sql.PreparedStatement;
31
import java.sql.ResultSet;
32
import java.sql.SQLException;
33
34
import edu.ucsb.nceas.metacat.DBConnection;
35
import edu.ucsb.nceas.metacat.DBConnectionPool;
36
37
public class BaseAccess {
38
39
	protected DBConnection conn = null;
40
    protected int serialNumber = -1;
41
    protected PreparedStatement pstmt = null;
42
    protected ResultSet rs = null;
43
44
    protected BaseAccess(String methodName) throws AccessException {
45
        //check out DBConnection
46
    	try {
47
    		conn = DBConnectionPool.
48
                	getDBConnection("methodName");
49
    		serialNumber = conn.getCheckOutSerialNumber();
50
    	} catch (SQLException sqle) {
51
    		throw new AccessException("Could not get connection from DB connection pool: "
52
    				+ sqle.getMessage());
53
    	}
54
    }
55
56
    protected ResultSet select(PreparedStatement pstmt) throws AccessException {
57
    	try {
58
    		pstmt.execute();
59
        	rs = pstmt.getResultSet();
60
    	} catch (SQLException sqle) {
61
    		throw new AccessException("Could not perform select: " + pstmt.toString()
62
    				+ sqle.getMessage());
63
    	}
64
65
    	return rs;
66
    }
67
}