1 /*2 * Created on Jun 7, 20043 *4 * To change the template for this generated file go to5 * Window>Preferences>Java>Code Generation>Code and Comments6 */7 package com.lutris.appserver.server.sql;8 9 /**10 * 11 */12 public interface AbstractDBConnectionFactory {13 14 /**15 * 16 */17 public DBConnection createConnection(ConnectionAllocator connectionAllocatorObj,18 String url, String user, String password, int maxPreparedStatements,19 boolean logging, int generation) throws java.sql.SQLException ;20 21 }22