Firebird Perl DBI driver 0.60 released

New version of DBI driver for Firebird is available at cpan with many changes and bugfixes . Please report any bugs and add them to the github project’s issues list

To download from cpan and install, simply do:

wget http://search.cpan.org/CPAN/authors/id/M/MA/MARIUZ/DBD-Firebird-0.60.tar.gz
tar -zxvf DBD-Firebird-0.60.tar.gz
cd DBD-Firebird-0.60/
perl Makefile.PL
make
make install

optional step

DBI_PASS=masterkey make test

pyfirebirdsql (python 3.x driver) here is a first todo list

Philippe Makowski wrote a first todo list for the driver  :

  • add multiple transactions per connection management
  • add prepared statements management
  • extend services api
  • improve info_database output (see db_info in kinterbasdb)

after that, I think that someone could work on sqlalchemy integration

I’ll try to first add the multiple transactions per connection
management in my repo (will create a branche for that)

Volunteers ?
Anything else ?

 

DBD Firebird Perl driver passes all tests and compiles with no warrnings

иконографияThanks to Damyan and Stefan work we have a perl driver that is free of compilation warnings and that passes all tests when you run it with make test from command line.
Here is the commit log with recent changes.

Great work, is nice to see:

All tests successful. Files=33, Tests=842, 52 wallclock secs ( 0.98 usr 0.15 sys + 9.99 cusr 1.37 csys = 12.49 CPU)
Result: PASS

And here is the proof you need to clone the git repository and run in the shell

ISC_PASSWORD=masterkey make test

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 121 122 123 124 125 294