|
Hi,
I came across a a requirement where I needed to pull some data from firebird database and push it into some file.
So I had to import firebirdsql module for python.
firebirdsql import works when I run the script from python2.6 command prompt. However when I run it from visual studio IDE + python tools it complains that it can't import the module.
the error is :No module named fcntl
I googled a bit and found out that fcntl is a unix only module and firebirdsql tries to import it if present. if not present it throws ImportError and handles correctly.
Can anyone help me why firebirdsql module works on python command prompt and not on python tools for visual studio?
Thanks in advance for all the help.
|