Using jdk1.3, resin, windows 2000 integrted with IIS
Trying to connect with the database:
Here is my path:
Class.forName( "org.enhydra.instantdb.jdbc.idbDriver" );
_conn = DriverManager.getConnection( "jdbc:idb:SupportCentral.prp" );
but it just sits there:
the bean thats calling it is located in:
c:\inetpub\wwwroot\WEB-INF\classes\support
the database is located:
c:\support\database
when i try this;
jdbc:idb:c:\\support\\database\\SupportCentral.prp
it just sits there and does nothing
If i move the whole database in the
c:\inetpub\wwwroot\WEB-INF\classes\support directory and use
jdbc:idb:SupportCentral.prp it seems to connect but when I do the
Class.forName( "org.enhydra.instantdb.jdbc.idbDriver" );
_conn = DriverManager.getConnection( "jdbc:idb:SupportCentral.prp" );
_stmt = _conn.createStatement();
It seems to fail around the createStatement.
Any ideas on this:
-----------------------------------------------------------------------------
To unsubscribe from this mailing list, send email to majordomo@enhydra.org
with the text "unsubscribe instantdb" in the body of the email.
If you have other questions regarding this mailing list, send email to
the list admin at owner-instantdb@enhydra.org.
|