mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2905: MySQL MyISAM Engine / Transaction rollback does not work #3620
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Jan 11, 2014).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user jack88:
I have two simple entities ( user 1:n address)
When i do this, then i get an exception:
That's okay, but the address-entity needs a zipcode.
The output from sqlLogger looks like this:
mysql> select * from users;
--------------
| id | name |
--------------
| 1 | Mr. Test |
--------------+
mysql> select * from addresses;
Empty set (0.00 sec)
@doctrinebot commented on GitHub (Jan 11, 2014):
Comment created by @beberlei:
This is not an issue with Doctrine, MyISAM does not support rollbacks. Use InnoDB instead.
@doctrinebot commented on GitHub (Jan 11, 2014):
Issue was closed with resolution "Invalid"