using psql it works fine, but i dont know how to get it working in python. Ive already made the calls but the changes never apper, and no error.
Which Postgres module are you using? I had the exct same problem when I first started using pyPgSQL, until I figured out that I needed to do:
db = PgSQL.connect(DSN) db.autocommit = 1 con = db.cursor()
In my code. -- http://mail.python.org/mailman/listinfo/python-list