Installing Perl DBI driver for Firebird 2.5 RDBMS server in #ubuntu and #debian

DBI driver for Firebird and RDBMS server is located in git now

This was tested on ubuntu ubuntu 11.10 oneiric with firebird 2.5 SuperServer installed from repository

Check if firebird dev headers are installed (this package is both for Super and for Classic)
also check if the perl module DBI is already installed

sudo apt-get install firebird2.5-dev libdbi-perl
git clone git://github.com/mariuz/perl-dbd-firebird.git
cd perl-dbd-firebird/
perl Makefile.PL
sudo make install

you can run the test if you want

ISC_PASSWORD=masterkey make test

1 2 3