Re: adodb.NewADOConnection('postgres') returns None

2010-07-16 Thread micayael
On 14 jul, 14:51, Mladen Gogala wrote: > On Wed, 14 Jul 2010 05:14:08 -0700, micayael wrote: > > Thanks Thomas. > > :-( then adodb today dosn't work with postgres (at least on ubuntu) > > right? > > No, ADOdb doesn't work with the newer versions of Postgres. ADOdb doesn't > work with Psycopg2 and

Re: adodb.NewADOConnection('postgres') returns None

2010-07-14 Thread Mladen Gogala
On Wed, 14 Jul 2010 05:14:08 -0700, micayael wrote: > Thanks Thomas. > :-( then adodb today dosn't work with postgres (at least on ubuntu) > right? No, ADOdb doesn't work with the newer versions of Postgres. ADOdb doesn't work with Psycopg2 and the guy who maintains it did not reply to my email

Re: adodb.NewADOConnection('postgres') returns None

2010-07-14 Thread Mladen Gogala
On Wed, 14 Jul 2010 20:04:59 +0200, Thomas Jollans wrote: > It certainly looks that way. It may be possible to install an old > psycopg module by hand - I'd expect that to work as well. Not on Ubuntu 9.10: checking PostgreSQL type catalog... /usr/include/postgresql/catalog/ pg_type.h checking

Re: adodb.NewADOConnection('postgres') returns None

2010-07-14 Thread Thomas Jollans
On 07/14/2010 02:14 PM, micayael wrote: > On Jul 13, 5:35 pm, Thomas Jollans wrote: >> On 07/13/2010 09:55 PM, micayael wrote: >> >>> Hi. >> >>> I'm trying to use adodb for postgres. I had instaled in ubuntu 9.10 >>> the adodb and psycopg2 module (sudo apt-get install python-adodb >>> python-psyco

Re: adodb.NewADOConnection('postgres') returns None

2010-07-14 Thread micayael
On Jul 13, 5:35 pm, Thomas Jollans wrote: > On 07/13/2010 09:55 PM, micayael wrote: > > > Hi. > > > I'm trying to use adodb for postgres. I had instaled in ubuntu 9.10 > > the adodb and psycopg2 module (sudo apt-get install python-adodb > > python-psycopg2) but when I put this > > > import adodb >

Re: adodb.NewADOConnection('postgres') returns None

2010-07-13 Thread Thomas Jollans
On 07/13/2010 09:55 PM, micayael wrote: > Hi. > > I'm trying to use adodb for postgres. I had instaled in ubuntu 9.10 > the adodb and psycopg2 module (sudo apt-get install python-adodb > python-psycopg2) but when I put this > > import adodb > print adodb.NewADOConnection('postgres') --> None > >

adodb.NewADOConnection('postgres') returns None

2010-07-13 Thread micayael
Hi. I'm trying to use adodb for postgres. I had instaled in ubuntu 9.10 the adodb and psycopg2 module (sudo apt-get install python-adodb python-psycopg2) but when I put this import adodb print adodb.NewADOConnection('postgres') --> None but with print adodb.NewADOConnection('mysql') --> -- ht