[Answer]-Connection._rollback() django… how far?

1👍

A rollback should set the database’s state back to point in time when the transaction was started. The start point depends of course on which kind of transaction management you are using – or – when a commit in between happens. You should read the django documentation on transaction management.

Leave a comment