views:

87

answers:

1

What is postgresql_psycopg2 ? Difference from postgresql ?

+1  A: 

It is (one of) the Python bindings to the PostgreSQL client library. It has nothing to do with PostgreSQL itself other than it allows Python programs to access a PostgreSQL server.

Simon
Or more specifically - the Django's database [configuration parameter](http://docs.djangoproject.com/en/dev/topics/install/#get-your-database-running) which instructs it to use the psycopg2 driver (instead 'postgresql' for psycopg1).
Milen A. Radev
what is the best for django ? postgresql or postgresql_psycopg2 ?
xRobot
postgresql_psycopg2.
intgr