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
16: * for the JDBC module
17: *
18: * @duplicate Since neither method does anything, better to make {@link DatabaseSupport}
19: * a base class and have {@link DatabaseSupportInformix} extend from that class.
20: * @author vpro
21: * @version $Id: DatabaseSupportShim.java,v 1.5 2004/10/07 17:22:34 pierre Exp $
22: */
23: public class DatabaseSupportShim implements DatabaseSupport {
24:
25: public void init() {
26: }
27:
28: public void initConnection(Connection con) {
29: }
30: }
|