| Home >> All >> com >> sonoma >> [ database Javadoc ] |
Source code: com/sonoma/database/connectionFactory.java
1 /* 2 * connectionFactory.java 3 * 4 * Created on January 19, 2002, 2:06 PM 5 */ 6 7 package com.sonoma.database; 8 9 /** 10 * 11 * @author Administrator 12 * @version 13 */ 14 public class connectionFactory extends Object { 15 16 /** Creates new connectionFactory */ 17 public connectionFactory() { 18 } 19 public connection createConnection(String connectString, String sDriver){ 20 connection cnn = new connection(connectString,sDriver); 21 return cnn; 22 } 23 24 }