Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
9k 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 ...
6
votes
4answers
667 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 ...
5
votes
5answers
3k 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 ...
2
votes
3answers
154 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() ...
2
votes
1answer
1k 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 ...
1
vote
1answer
273 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
120 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.: ...
1
vote
4answers
288 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
322 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
82 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?
1
vote
3answers
385 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
111 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 ...
0
votes
1answer
55 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 ...
0
votes
1answer
249 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} ...
0
votes
1answer
136 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 ...
0
votes
2answers
325 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 = ...