01: /*
02: * Created by IntelliJ IDEA.
03: * User: mrettig
04: * Date: Aug 10, 2002
05: * Time: 1:03:51 AM
06: */
07: package net.sourceforge.jaxor.example.db;
08:
09: import net.sourceforge.jaxor.api.ConnectionFactory;
10: import net.sourceforge.jaxor.db.ConnectionRegistry;
11:
12: import java.sql.Connection;
13:
14: public class AxionConnection implements ConnectionFactory {
15:
16: public static AxionConnection INSTANCE = new AxionConnection();
17:
18: private final ConnectionRegistry reg = ConnectionRegistry
19: .getConnection(org.axiondb.jdbc.AxionDriver.class);
20:
21: private AxionConnection() {
22: }
23:
24: public Connection getConnection() {
25: return reg.create("jdbc:axiondb:jaxorDb", "", "");
26: }
27: }
|