01: /*
02: * Copyright (C) 2004 Giuseppe MANNA
03: *
04: * This file is part of FreeReportBuilder
05: *
06: * FreeReportBuilder is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU General Public License
08: * as published by the Free Software Foundation; either version 2
09: * of the License, or (at your option) any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19: *
20: */
21:
22: package it.frb;
23:
24: import it.frb.admin.*;
25:
26: public class Connessione {
27: public static boolean bMltStm;
28:
29: public static java.sql.Connection getConnessione() {
30: if (ConnectionPool.getConnectionDefinition() == null) {
31: DialogAdministrator dlgAdmin = new DialogAdministrator(
32: new javax.swing.JFrame());
33: dlgAdmin.show();
34: }
35:
36: bMltStm = ConfigurationProperties.properties()
37: .getUseMultiTransaction(false);
38:
39: if (bMltStm) {
40: return ConnectionPool.getConnection(ConnectionPool
41: .getConnectionDefinition().getCatalog());
42: } else {
43:
44: if (ConnectionPool.getConnectionDefinition() != null) {
45: return ConnectionPool.getNewConnection(ConnectionPool
46: .getConnectionDefinition().getCatalog());
47: } else {
48: return null;
49: }
50: }
51: }
52: }
|