Top "Psycopg2" questions

Psycopg is a PostgreSQL adapter for Python programming language.

How do cursors work in Python's DB-API?

I have been using python with RDBMS' (MySQL and PostgreSQL), and I have noticed that I really do not understand …

python performance rdbms cursors psycopg2
psycopg2 and SQL injection security

I am writing a class to be used as part of a much larger modeling algorithm. My part does spatial …

python postgresql postgis psycopg2
There is no South database module 'south.db.postgresql_psycopg2' for your database django

I have a django app with version as 1.6.5, i am trying to upgrade it to 1.8, but on the way i …

django postgresql django-south psycopg2
How to read and insert bytea columns using psycopg2?

I am working on a Python script to replicate some Postgresql tables from one environment to another (which does a …

python-3.x psycopg2 postgresql-9.3
Graceful Primary Key Error handling in Python/psycopg2

Using Python 2.7 and In [150]: psycopg2.version Out[150]: '2.4.2 (dt dec pq3 ext)' I have a simple python scripts that …

python sql postgresql psycopg2
How do you get PyPy, Django and PostgreSQL to work together?

What fork, or combination of packages should one to use to make PyPy, Django and PostgreSQL play nice together? I …

python django postgresql psycopg2 pypy
Python psycopg2 not in utf-8

I use Python to connect to my postgresql data base like this: conn=psycopg2.connect(database="fedour", user="fedpur", password="***", …

python sql psycopg2 utf
Query OLAP Mondrian (MDX, XMLA) with a Python interface?

Actually I'm using R + Python with RPY2 to manipulate data and ggplot to create beautiful graphics.. I have some data …

python mdx olap psycopg2 xmla
psycopg: Python.h: No such file or directory

I'm compiling psycopg2 and get the following error: Python.h: No such file or directory How to compile it, Ubuntu12 …

python psycopg2
Inserting multiple rows using psycopg2

According to psycopg2: insert multiple rows with one query, it is much more efficient to use psycopg2's execute instead …

python postgresql psycopg2 python-db-api