Hi Will,
Well, it seems to me that everything works. You need to debug your application and library paths. Check out if java.library.path contains the folder where you have the binary.
Cheers,
Igor
--
Igor Sereda
ALM Works
Will, the build path is the classpath that is used during compilation. What you need is the library path that can be used by sqlite4java during runtime to find the binary libs. By default, it tries to look for them in the same directory where sqlite4java.jar is located – but probably this is overridden by java.library.path property. I’d advise you to try specifying java.library.path that includes the path where sqlite4java is located. (Using -Djava.library.path=... command line option or your IDE settings.)
Hope this helps!
Igor