Subject | Firebird & Java on iPAQ |
---|---|
Author | netotortorello |
Post date | 2006-09-25T12:44:54Z |
Hello!
I'm trying to connect to a FirebirdSQL database from my iPAQ running
Windows Mobile 2003 and IBM J9 2.2 JVM (Java 1.3.0). I've already
connected to a PostgreSQL with no problems.
That's the error:
java.lang.NoClassDefFoundError: org.firebirdsql.jdbc.FBDataSource
at org.firebirdsql.jdbc.FBDriver.createDataSource(Unknown Source)
...
My code is very simple:
Class.forName("org.firebirdsql.jdbc.FBDriver");
String url = "jdbc:firebirdsql:192.168.0.1:/databases/WiseCommerce";
Connection conn = DriverManager.getConnection(url, "sysdba",
"masterkey");
I've tried all Jaybird versions available on the FirebirdSQL web site.
Please, can someone help me?
Thanks
Victor Tortorello Neto - T2 Tecnologia
I'm trying to connect to a FirebirdSQL database from my iPAQ running
Windows Mobile 2003 and IBM J9 2.2 JVM (Java 1.3.0). I've already
connected to a PostgreSQL with no problems.
That's the error:
java.lang.NoClassDefFoundError: org.firebirdsql.jdbc.FBDataSource
at org.firebirdsql.jdbc.FBDriver.createDataSource(Unknown Source)
...
My code is very simple:
Class.forName("org.firebirdsql.jdbc.FBDriver");
String url = "jdbc:firebirdsql:192.168.0.1:/databases/WiseCommerce";
Connection conn = DriverManager.getConnection(url, "sysdba",
"masterkey");
I've tried all Jaybird versions available on the FirebirdSQL web site.
Please, can someone help me?
Thanks
Victor Tortorello Neto - T2 Tecnologia