Subject | Re: How to use Jaybird with embedded Firebird ? |
---|---|
Author | patrick_detorcy |
Post date | 2004-07-20T14:36:36Z |
> > I want to use a java application with Jaybird using the embeddedHas anybody have ever tried with success ??
> > Firebird, ie with no installation from the user.
> > Is it only possible ??
>
> Should be possible.
>sent it
> > Where to copy fbembed.dll ?
>
> If must be available via java.library.path system property. You can
> at the JVM startup. By default JVM looks in the PATH.I have added in my batch file :
>
set path = c:\myfolder
where I have put fbembed.dll. I put it too in c:\windows\system32.
I have checked : System.getProperty("java.library.path")
and I can see : c:\windows\system32 (among others)
> Ensure that you use JayBird 1.5, and not 1.0.1. Check your %JRE%/lib/extto do
> directory and your classpath.
>
> Most likely you have an old JayBird somewhere. It did not know what
> with the jdbc:firebirdsql:embedded: URLs.I launch my application with :
java -classpath "%javadir%\lib\firebirdSQL\firebirdSQL-full.jar" ...
where firebirdSQL-full.jar is from "FirebirdSQL-1.5.0RC3JDK_1.4.zip"
So I'm sure not to use firebirdsql 1.0, but it still doesn't work
(same message)
Patrick