Subject Re: [firebird-support] Embedded Firebird/Jaybird
Author Luca Lafranchi
Hi Bruce :)

bruce_eric_miller wrote:


> try {
> fbManager = new FBManager();
> fbManager.start();
> fbManager.createDatabase("c:\test.gdb", DB_USER,
> DB_PASSWORD);
> }
> catch (Exception e) {
> System.out.println(e.getMessage());
> }

In order to use the embedded server, you must have the latest driver
from cvs, since the last Jaybird release (1.0.1) doesn't contains the
changes for embedded yet.
Once you have it, you need to specify the right driver type for FBManager:

try{
fbManager = new FBManager(FBManager.Type.TWO_EMBEDED);
....

This should work (never tried it, though...).

Ciao
Luca