Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've started working on a Django/Postgres site. Sometimes I work in manage.py shell, and accidentally do some DB action that results in an error. Then I am unable to do any database action at all, because for any database action I try to do, I get the error:

current transaction is aborted, commands ignored until end of transaction block

My current workaround is to restart the shell, but I should find a way to fix this without abandoning my shell session.

(I've read this and this, but they don't give actionable instructions on what to do from the shell.)

share|improve this question
1  
i've had this issue before and could not find a way to do this... – Hoff Oct 13 '11 at 11:31

5 Answers

up vote 42 down vote accepted

You can try this:

from django.db import connection
connection._rollback()

The more detailed discussion of this issue can be found here: https://code.djangoproject.com/ticket/10813

share|improve this answer
AWESOME, thank you! – NiKo Apr 17 '12 at 10:29
1  
This solution is not working for me. Even when rolling back the transaction, I cannot do any interactions with the DB anymore. I found another workaround, see my answer. – ifischer Feb 1 at 12:47

I had this error after restoring a backup to a totally empty DB. It went away after running:

./manage syncdb 

Maybe there were some internal models missing from the dump...

share|improve this answer

this happens to me sometimes, often it's the missing

manage.py migrate 

or

manage.py syncdb

as mentioned also here

it also can happen the other way around, if you have a schemamigration pending from your models.py. With south you need to update the schema with.

manage.py schemamigration mymodel --auto
share|improve this answer

Check this:

http://docs.djangoproject.com/en/dev/topics/db/transactions/?from=olddocs#handling-exceptions-within-postgresql-transactions

The quick answer is usually to turn on database level autocommit by adding:

'OPTIONS': {'autocommit': True,}
share|improve this answer

WARNING: the patch below can possibly cause transactions being left in an open state on the db (at least with postgres). Not 100% sure about that (and how to fix), but I highly suggest not doing the patch below on production databases.

As the accepted answer does not solve my problems - as soon as I get any DB error, I cannot do any new DB actions, even with a manual rollback - I came up with my own solution.

When I'm running the Django-shell, I patch Django to close the DB connection as soon as any errors occur. That way I don't ever have to think about rolling back transactions or handling the connection.

This is the code I'm loading at the beginning of my Django-shell-session:

from django import db
from django.db.backends.util import CursorDebugWrapper
old_execute = CursorDebugWrapper.execute
old_execute_many = CursorDebugWrapper.executemany

def execute_wrapper(*args, **kwargs):
    try:
        old_execute(*args, **kwargs)
    except Exception, ex:
        logger.error("Database error:\n%s" % ex)
        db.close_connection

def excecute_many_wrapper(*args, **kwargs):
    try:
        old_execute_many(*args, **kwargs)
    except Exception, ex:
        logger.error("Database error:\n%s" % ex)
        db.close_connection

CursorDebugWrapper.execute = execute_wrapper
CursorDebugWrapper.executemany = excecute_many_wrapper
share|improve this answer
If anyone's interested: I extended the django-extensions shell-plus command to be able to load files on startup, in which I'm besides others stuff including this patch. github.com/ifischer/django-extensions – ifischer Feb 1 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.