Psycopg is a popular PostgreSQL adapter for the Python programming language. At its core it fully implements the Python DB API 2.0 specifications. Several extensions allow access to many of the features offered by PostgreSQL.
1
vote
1answer
92 views
Why is my created postgres user being denied access to a table?
I have created a user for my Postgres database but I cannot access the data with the user that I set up.
In a python shell I have run the following code:
>>> import psycopg2
>>> ...
1
vote
2answers
166 views
Psycopg missing module in Django
I have pip installed psycopg2, but when I try to runserver or syncdb in my Django project, it raises an error saying there is "no module named _psycopg".
EDIT: the "syncdb" command now raises:
...
0
votes
1answer
470 views
python ImportError: No module named psycopg2
I'm sure this is an easy one for you python experts!
I'm trying to install django with postgres on a centos 5.8 system
It originally had python 2.4 and I have added the remi repo to install python ...
0
votes
1answer
130 views
What is the meaning of 'key' in psycopg connection pooling?
I am going through Psycopg Connections Pooling documentation, and don't understand what is the purpose of 'key' argument in getconn and putconn?
5
votes
3answers
1k views
How can I pool connections using psycopg and gevent?
The psycopg docs state: "Psycopg connections are not green thread safe and can’t be used concurrently by different green threads. Trying to execute more than one command at time using one cursor per ...
0
votes
1answer
400 views
manage.py syncdb fails on Windows 7
I am trying to build my first Django app but I can't get the database to sync properly in the initial attempt.
I get the following error:
c:\mysite>manage.py syncdb
Traceback (most recent call ...
1
vote
2answers
397 views
cursort.execute/cursor.callproc returns no error but nothing is executed
When i run this SQL query via psql client it runs for several seconds (~90 seconds, that's normal since its a huge table) and it return, then i can check that my line is successfully inserted.
SELECT ...
2
votes
0answers
109 views
Django. Async database engine.
Psycopg2 has async mode.
But if we will set async=1 in OPTIONS for postgresql_psycopg2 - we will get error commit cannot be used in asynchronous mode.
So, is there any wrapper, like momoko, for ...
1
vote
2answers
430 views
prepared statements using psycopg
I'm a beginner at python. We use this code to execute SQL commands.
cur.execute("INSERT INTO test (num, data) VALUES (%s, %s)", (100, "abcdef"))
I wonder is this prepared statement or just a client ...
1
vote
1answer
154 views
How do I know if I have successfully created a table (Python, Psycopg2)?
I've looked at the documentations but haven't found anything that lets me know if the last command i've execute via cursor.execute("...") is successful.
I'm expecting a reply like "1 row affected."
1
vote
2answers
744 views
psycopg in wrong python - Ubuntu
I'm running Ubuntu. I installed python2.7 and the latest version of Postgresql.
When I installed psycopg, the package showed up in the default Ubuntu version of python instead of the 2.7 version ...
1
vote
1answer
119 views
Can I bundle psycopg2 with a closed source django application using py2exe
I am planning to use py2exe to distribute a closed source django based application. Psycopg2 is the only dependency with the LGPL licence, the rest are MIT or BSD based. Can I distribute my ...
1
vote
1answer
1k views
psycopg2 + pgbouncer. Async mode with gevent error
I've got an application psycopg2 + pgbouncer + gevent. Asynchronous application, ie one process serves multiple requests. Asynchronous access to database appeared in the latest version of psycopg2, if ...
1
vote
2answers
868 views
psycopg - Get formatted sql instead of executing
I have a piece of Python code, that interacts with a PostgreSQL database via psycopg.
All literature warns against doing sql formatting by oneself, and recommends letting the driver do it. E.g.:
...
2
votes
3answers
653 views
psycopg2 strange behavior
from django.db import connection
q = 'some value'
sql1 = 'SELECT * FROM table WHERE field LIKE %%%s%%' % q
sql2 = 'SELECT * FROM table WHERE field LIKE %%'+ q +'%%'
cursor = connection.cursor()
...
1
vote
1answer
1k views
Postgresql table update
I updated a database table using postgresql from python
My code was
import psycopg2
connection=psycopg2.connect("dbname=homedb user=ria")
cursor=connection.cursor()
l_dict= {'licence_id':1}
...
2
votes
4answers
851 views
PostgreSQL connection closes unexpectedly when doing a large insert
I'm populating a PostgreSQL table with ~11.000.000 rows that have been selected before from another database. I'm using Python and psycopg2. The whole process takes an estimated 1.5 hours to complete. ...
1
vote
1answer
523 views
postgresql CLUSTER command not clearing dead tuples
We have a background process (linux daemon in an infinite loop) that automatically takes all lines from csv files that are placed in a certain directory and imports them into a table. The daemon ...
1
vote
2answers
130 views
Python and psycopg detect network error
When connected to a postgresql database using psycopg and I pull the network cable I get no errors. How can I detect this in code to notify the user?
2
votes
1answer
2k views
django, postgres 8.4, psycopg 2.2.2, python 2.7, mod_wsgi
I've installed django/postgres on local django server and works fine. I'm trying to get Apache working. I've set up the mod_wsgi and was able to get a "Hello World", and restart Apache. I'm almost ...
0
votes
1answer
189 views
Psycopg2 under osx works on commandline but fails in Aptana studio
Howdy,
I have been developing under Python/Snowleopard happily for the part 6 months. I just upgraded Python to 2.6.5 and a whole bunch of libraries, including psycopg2 and Turbogears. I can start up ...
7
votes
5answers
2k views
python adds “E” to string
This string:
"CREATE USER %s PASSWORD %s", (user, pw)
always gets expanded to:
CREATE USER E'someuser' PASSWORD E'somepassword'
Can anyone tell me why?
Edit:
The expanded string above is the ...
59
votes
9answers
28k views
DatabaseError: current transaction is aborted, commands ignored until end of transaction block
I got a lot of "DatabaseError: current transaction is aborted, commands ignored until end of transaction block" errors after changed from python-psycopg to python-psycopg2 as Django project's database ...
1
vote
3answers
643 views
What does Postgres do when BEGIN is run on a connection in autocommit mode?
I'm trying to better understand the concept of 'autocommit' when working with a Postgres (psycopg) connection. Let's say I have a fresh connection, set its isolation level to ...
0
votes
2answers
497 views
To insert to Pg by Psycopg
How can you fix the SQL-statement in Python?
The db connection works. However, cur.execute returns none which is false.
My code
import os, pg, sys, re, psycopg2
try:
conn = ...
5
votes
5answers
4k views
Python-PostgreSQL psycopg2 interface --> executemany
I am currently analyzing a wikipedia dump file; I am extracting a bunch of data from it using python and persisting it into a PostgreSQL db. I am always trying to make things go faster for this file ...
