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 MckoiConnection implements ConnectionFactory {
15:
16: public static MckoiConnection INSTANCE = new MckoiConnection();
17:
18: private final ConnectionRegistry reg = ConnectionRegistry
19: .getConnection(com.mckoi.JDBCDriver.class);
20:
21: private MckoiConnection() {
22: }
23:
24: public Connection getConnection() {
25: return reg
26: .create(
27: "jdbc:mckoi:local://lib/build/mckoi/db.conf?create=true",
28: "admin_user", "aupass00");
29: }
30: }
|