Installing Perl DBI driver for Firebird RDBMS server

DBI driver for Firebird and RDBMS server is located in cpan
This was tested on ubuntu karmic with firebird 2.1 classic version installed (from repository)
also with perl module DBI aready installed
Check if firebird dev headers are installed (this package is both for Super and for Classic)
sudo apt-get install firebird2.1-dev

I have installed latest DBI
wget http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-1.609.tar.gz
tar -zxvf DBI-1.609.tar.gz
cd DBI-1.609
perl Makefile.PL
sudo make install

Then install the Firebird driver
wget http://search.cpan.org/CPAN/authors/id/E/ED/EDPRATOMO/DBD-InterBase-0.48.tar.gz
tar -zxvf DBD-InterBase-0.48.tar.gz
cd DBD-InterBase-0.48
perl Makefile.PL
make
make test (optional step)
make install

here is my actual console output
http://paste.ubuntu.com/308245/

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

Leave a Reply