Brian Silberbauer wrote:

> I got around this by changing the class
> org.apache.turbine.util.db.pool.DBInstantDB.class by recompilng it with the following
> change:
> 
>     public void init(String url, String username, String password) throws Exception {
>         DB_CONNECTION = "jdbc:idb=" + url;
>         Class.forName("org.enhydra.instantdb.jdbc.idbDriver").newInstance();
> //        Class.forName("jdbc.idbDriver").newInstance();
>     }

In the current version is no

    Class.forName("jdbc.idbDriver").newInstance();

but

    Class.forName( getJDBCDriver() ).newInstance();

Changing this to

    Class.forName("org.enhydra.instantdb.jdbc.idbDriver").newInstance();

does not work - what ever I trie, I'll get this message:

java.lang.Error: Error in BasePeer.initTableSchema(Visitor): 
        Database type org.enhydra.instantdb.idbDriver not implemented.

Patrick Hess

| metazoa GmbH        | fon   +49-211-175447-14 |
| Hohenzollernstr. 34 | fax   +49-211-175447-27 |
| 40211 D�sseldorf    | mail  [EMAIL PROTECTED] |


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to