01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.module.database;
11:
12: import java.sql.*;
13:
14: /**
15: * Interface to support specific database things for the JDBC module
16: *
17: * @javadoc
18: * @duplicate make this a class instead of an interface, and let {@link DatabaseSupportInformix} extend
19: * from it instead of implementing the interface.
20: * @author vpro
21: * @version $Id: DatabaseSupport.java,v 1.5 2004/10/07 17:22:34 pierre Exp $
22: */
23: public interface DatabaseSupport {
24:
25: public void init();
26:
27: public void initConnection(Connection con);
28: }
|