Subject Re: Error Messages and Interclient Incompatabilities
Author Roman Rokytskyy
> What version of Java do I need to compile FirebirdSQL?
> I've sucked down all the source from CVS, created a JBuilder 6
> project file and added the source to it, but when I try to compile
> it I get:
>
> "FBConnection.java": Error #: 302 : cannot access class
> java.sql.Savepoint; java.io.IOException: class not found: class
> java.sql.Savepoint at line 30, column 17
>
> I'm using JDK1.3.1

1.3.1 is ok, but you have to include client-java/src/lib/jdbc-3_0-
pfd2-classes.zip as project library.

create file client-java.library with the following content:

<?xml version="1.0" encoding="UTF-8"?>
<library>
<!--JBuilder Library Definition File-->
<fullname>client-java</fullname>
<class>
<path>[src/lib/concurrent.jar]</path>
<path>[src/lib/jdbc-3_0-pfd2-classes.zip]</path>
<path>output/j2ee</path>
<path>[src/lib/jaas.jar]</path>
<path>[src/lib/log4j-core.jar]</path>
</class>
</library>

This includes all needed libraries for JBuilder. Or use Ant.

Roman