01: /*
02: * Created on Jun 7, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package com.lutris.appserver.server.sql;
08:
09: /**
10: *
11: */
12: public interface AbstractDBConnectionFactory {
13:
14: /**
15: *
16: */
17: public DBConnection createConnection(
18: ConnectionAllocator connectionAllocatorObj, String url,
19: String user, String password, int maxPreparedStatements,
20: boolean logging, int generation)
21: throws java.sql.SQLException;
22:
23: }
|