Class DataManagerFactoryImpl

Default implementation of org.kaiwitte.workbench.data.DataManagerFactory.

Synopsis

 public class DataManagerFactoryImplimplements DataManagerFactory {
  public DataManagerFactoryImpl(String driver,
                                String database);

  public DataManager getDataManager(DataScheme scheme)
    throws IOException;

}

Methods inherited from java.lang.Object: clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait

Inheritance Path. java.lang.Object-> org.kaiwitte.workbench.data.DataManagerFactoryImpl

DataManagerFactoryImpl(String, String)

Synopsis: public DataManagerFactoryImpl(java.lang.String driver, 
                                        java.lang.String database);

Parameters

driver

the driver as a fully qualified class name

database

the database URL as specified by JDBC

Creates a new instance.

getDataManager(DataScheme)

Synopsis: public DataManager getDataManager(org.kaiwitte.workbench.data.Dat\
aScheme scheme)

              throws java.io.IOException;

Specified by: Method getDataManager in interface DataManagerFactory

Parameters

scheme

the scheme

return

the org.kaiwitte.workbench.data.DataManager

Exceptions

IOException

iff an I/O error occurs

Description copied from interface: getDataManager

Creates a new org.kaiwitte.workbench.data.DataManager or reuses an old one.