KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > appserver > server > sql > AbstractDBConnectionFactory


1 /*
2  * Created on Jun 7, 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

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 JavaDoc url, String JavaDoc user, String JavaDoc password, int maxPreparedStatements,
19       boolean logging, int generation) throws java.sql.SQLException JavaDoc;
20
21 }
22
Popular Tags