KickJava   Java API By Example, From Geeks To Geeks.

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


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
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 }
31
Popular Tags