Subject Re: [Firebird-Java] Firebird 2.5 Services API extensions?
Author Thomas Steinmaurer
>> Now I get e.g. that FBCallableStatement is already defined ...
>>
>> Do I have to customize the build in Eclipse somehow to say what JDK/JDBC
>> ... version is targeted?
>
> Depending on JDK you use you have to include one of the jdbc_XX,
> pool_jdkX_X, wire_jdkX_X. If you run JDK 1.4.2, you should not include
> test30.

Can build it now (although with a lot of warnings). Anyway, when I'm
trying to start a small test application, which basically tests a minor
change in UserManager/FBUserManager, when instantiating the
FBUserManager class with:

UserManager userManager = new FBUserManager("PURE_JAVA");


I end up with the following exception:

Exception in thread "main" java.lang.IllegalArgumentException: Specified
GDS type null is unknown.
at org.firebirdsql.gds.impl.GDSFactory.getGDSForType(GDSFactory.java:216)
at
org.firebirdsql.management.FBServiceManager.<init>(FBServiceManager.java:72)
at org.firebirdsql.management.FBUserManager.<init>(FBUserManager.java:67)
at
org.firebirdsql.management.test.TestSecurityDatabase.listUsers(TestSecurityDatabase.java:16)
at org.firebirdsql.management.test.RunTest25API.main(RunTest25API.java:13)



Do I have to register the gds types or something like that explicitely?


Thanks,
Thomas