3
votes
4answers
680 views
How do cursors work in Python’s DB-API?
Hi again,
I have been using python with RDBMS' (MySQL and PostgreSQL), and I have noticed that I really do not understand how to use a cursor.
Usually, one have his script connec …
0
votes
3answers
53 views
Why isn’t psycopg2 executing any of my SQL functions? (IndexError: tuple index out of range)
I'll take the simplest of the SQL functions as an example:
CREATE OR REPLACE FUNCTION skater_name_match(INTEGER,VARCHAR)
RETURNS BOOL AS
$$
SELECT $1 IN (SELECT skaters_skater …
0
votes
1answer
28 views
psycopg2 and mod_python import error
I am trying to setup roundup on a windows XP machine.
I use psycopg2 v2.0.13 and when i import the psycopg2 module from the shell it all works fine, but when mod_python tries to do …
0
votes
1answer
42 views
Pylons importing Psycopg2 error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.6/site-packages/psycopg2/__init__.py", line 60, in <module>
…
0
votes
2answers
144 views
psycopg2 disconnects from server
I've been tackling this for a while. I setup a completely new machine. I've installed a fresh copy of postgresql and all my other dependencies. Basically, I get these database disc …
0
votes
2answers
45 views
problem handling db conection on daemonize threads…
Just for the record, i just started programing on python, and this is the first time i try to do a daemon.
I have a problem handling DB connections in a daemon i've been working o …
0
votes
7answers
195 views
Generate SQL statements with python
I need to generate a list of insert statements (for postgresql) from html files, is there a library available for python to help me properly escape and quote the names/values? in P …
1
vote
2answers
459 views
PsycoPG2 “TypeError: not all arguments converted during string formatting”
I'm trying to insert binary data (a whirlpool hash) into a PG table and am getting an error:
TypeError: not all arguments converted during string formatting
code:
cur.execute(" …
0
votes
2answers
62 views
how disable psycopg2 connection pooling
i have configured pgpool-II for postgres connection pooling and i want to disable psycopg2 connection pooling. how do i do this?
thanks!
0
votes
1answer
279 views
[Python] ImportError: DLL load failed : - when trying to import psycopg2 library
>>> import psycopg2
Traceback (most recent call last):
File "", line 1, in
File "C:\Python26\lib\site-packages\psycopg2\__init__.py", line 60, in
from _psycopg import BI …
0
votes
1answer
62 views
Making sure that psycopg2 database connection alive.
Hi folks,
I have a python application that opens a database connection that can hang online for an hours, but sometimes the database server reboots and while python still have the …
2
votes
3answers
276 views
Reverse foreign key to django-fts searchable model in template
I have a pair of Django models with a foreign key, one of which is searchable with django-fts, say:
class Foo(models.Model):
...
class Bar(fts.SearchableModel):
foo = mode …
5
votes
6answers
551 views
How can I speed up update/replace operations in PostgreSQL?
We have a rather specific application that uses PostgreSQL 8.3 as a storage backend (using Python and psycopg2). The operations we perform to the important tables are in the major …
0
votes
3answers
351 views
PostgreSQL - how to run VACUUM from code outside transaction block?
I am using Python with psycopg2 and I'm trying to run a full VACUUM after a daily operation which inserts several thousand rows. The problem is that when I try to run the VACUUM c …
0
votes
2answers
87 views
Connecting Zope to Postgres with savepoint support - Alternatives to ZPsycopgDA
Is there a way to get savepoint support in a Zope connection to Postgres?
I'm currently using ZPsycopgDA, which doesn't support savepoints, and is also hard to install with buildo …
