Python 2.5 and sqlite

Steve Holden steve at holdenweb.com
Wed Nov 12 07:54:16 EST 2008


timotoole at gmail.com wrote:
> On Nov 12, 10:14 am, Thorsten Kampe <thors... at thorstenkampe.de> wrote:
>> * timoto... at gmail.com (Wed, 12 Nov 2008 01:27:01 -0800 (PST))
>>
>>> Python (2.5.1) was compiled from source on the webserver that I use,
>>> without an associated sqlite present on the machine, so trying "import
>>> sqlite3" in a python application gives an error, but aside from that
>>> python is mostly behaving itself. Again further clarification, the
>>> webserver is a sun machine, my machine is linux and all drives of all
>>> machine in the network are mounted, so a ssh,telnet,rlogin is not
>>> required to gain access to other machines.
>>> Now with that out of the way, I'm still not clear if I can install a
>>> copy of sqlite on my local machine and get that to work with python on
>>> the webserver? Possibly via pysqlite?
>> No, if Python was compiled without SQLite support or pysqlite is not
>> installed on that machine it will not run anything SQLite related.
>>
>> Thorsten
> 
> 
> ok, thanks for the clarification Thorsten. would it be the same
> situation trying to get another db such as MySQL or PostgreSQL working?

No, as those database are supported by modules you have to load separately.

Seems like the easiest answer to your problem would be to install SQLite
and then rebuild the Python interpreter.

regards
 Steve
-- 
Steve Holden        +1 571 484 6266   +1 800 494 3119
Holden Web LLC              http://www.holdenweb.com/




More information about the Python-list mailing list