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 OracleConnection implements ConnectionFactory {
15:
16: public static OracleConnection INSTANCE = new OracleConnection();
17:
18: private final ConnectionRegistry reg = ConnectionRegistry
19: .getConnection(oracle.jdbc.driver.OracleDriver.class);
20:
21: private OracleConnection() {
22: }
23:
24: public Connection getConnection() {
25: return reg.create("jdbc:oracle:thin:@192.168.1.100:1521:jaxor",
26: "scott", "tiger");
27: }
28: }
|