Firebird News

Thursday, May 28, 2009

Firebird Python HowTo on Ubuntu

Here is how to install the official stable 3.3.x python driver for firebird ,
the one 3.2.x from ubuntu repository is quite old an buggy

wget http://voxel.dl.sourceforge.net/sourceforge/firebird/kinterbasdb-3.3.0.tar.bz2
tar -jxvf kinterbasdb-3.3.0.tar.bz2
cd kinterbasdb-3.3.0/
sudo apt-get install python-dev firebird2.5-dev
sudo python setup.py install
python -c "import kinterbasdb as k; print k.__version__"

(3, 3, 0, 'pre-alpha', 0)
Read the rest of the manual or installation guide

I have created in my case this test.py



$ python test.py

No comments: