KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > database > DatabaseSupport


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

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     public void initConnection(Connection con);
27 }
28
Popular Tags