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 MySqlConnection implements ConnectionFactory {
15:
16: public static MySqlConnection INSTANCE = new MySqlConnection();
17:
18: private final ConnectionRegistry reg = ConnectionRegistry
19: .getConnection(com.mysql.jdbc.Driver.class);
20:
21: private MySqlConnection() {
22: }
23:
24: public Connection getConnection() {
25: return reg.create("jdbc:mysql://192.168.1.102/test",
26: "jaxor_test", "jaxor_test");
27: }
28: }
|