Subject Firebird connection with java..
Author rakesh4u60
Hi,

I have installed Firebird 2.1 on windows Xp and using firebirdsql.jdbc-2.1.6 driver to connect with java.

Code:

Class.forName("org.firebirdsql.jdbc.FBDriver");

connection = DriverManager.getConnection(
"jdbc:firebirdsql://localhost/3050:C:\\firebird\\database\\TESTONEDB.GDB","test","test");
I am getting following error:

Caused by: org.firebirdsql.jdbc.FBSQLException: GDS Exception. 335544375.
unavailable database
Reason: unavailable database at
org.firebirdsql.jdbc.FBDataSource.getConnection(FBDataSource.java:122) at
org.firebirdsql.jdbc.FBDriver.connect(FBDriver.java:140) at
java.sql.DriverManager.getConnection(DriverManager.java:525) at
java.sql.DriverManager.getConnection(DriverManager.java:171)

Please note that I am able to connect with ISQL and FlameRobin. My windows firewall is disabled. I tried to use fdb databases also but nothing is working.

Please help, its really urgent for me.