Subject | Re: [Firebird-Java] Several novice type questions re Jaybird and Debian |
---|---|
Author | Roman Rokytskyy |
Post date | 2007-04-02T21:00:44Z |
> 1) What more do I need to do on the Linux side to make sure thatYou need libjaybird21.so only if you want to connect to Firebird 2.1
> Jaybird is up and running?
alpha using new optimized wire protocol. If that is not the case, you
can use pure Java implementation, that is you need only
jaybird-full-2.1.1.jar in your classpath.
> 2) How do I structure the stored procedure call statement in the XMLHuh? Jaybird does not parse the XML files. However it supports the
> file -- that is, what is the syntax for calling a Firebird stored
> procedure with input and output parameters in XML?
escaped syntaxt, which is
{call my_proc ?, ?, ...}
or use normal SQL:
EXECUTE PROCEDURE my_proc(?, ?, ...)
> 3) Are there any simple test programs, either windows or linux, toYou can use DriverExample.java, only correct the path to the database to
> test the JDBC driver and perhaps the XML calling file?
which you want to connect.
Roman