Subject | Re: [Firebird-Java] Re: Develop Java Application with Embedded Server |
---|---|
Author | Roman Rokytskyy |
Post date | 2008-02-21T10:56:46Z |
> I read somewhere (IIRC) that it should be somehow possible to have aYou have confused something. Jaybird implements the wire protocol to the
> jdbc driver that doesn't need dll's or anything and would make it
> possible to do all connecting to the database from pure java
> (somthing with JDBC 4).
server in Java, but it can't access the database file from Java. In
other words, when you have running Firebird server (a standalone process
that listens to the network socket), you can use pure Java driver and
you don't need DLLs.
But this won't replace you the Firebird Embedded if you want to access
the database file from Java - Jaybird driver has no idea what is stored
in the file, no idea how to execute SQL, it just translates the JDBC API
into native Firebird API.
> What is the current status,Production ready - it have been used since 2002 or so :)
> since this wouldWell... nothing speaks against having such solution with Firebird
> make it very feasible to make a portable application. Say I create
> exe files for windows and sh script for *nix and I just dump
> everything in one directory and the application 'just works'
Embedded - only don't forget to include the required DLLs :)
Roman