Is there an easy way to check for duplicate keys with Doctrine 2 before doing a flush?
feedback
|
|
I use this strategy to check for unique constraints after flush(), may not be what you want, but might help someone else. When you call flush(), if a unique constrain fails, a PDOException is thrown with the code 23000.
If you need to get the name of the failing column: Create table indices with prefixed names, eg. 'unique_'
DO NOT specify your columns as unique in the @Column definition This seems to override the index name with a random one...
After you regenerate your table (you may need to drop it & rebuild), you should be able to extract the column name from the exception message.
Not perfect, but it works... | ||||
|
feedback
|
|
I have come across this problem some time ago, too. The main problem is not database specific exceptions but the fact, when an PDOException is thrown the EntityManager is closed. That means you can not be sure what will happen with the data you wanted to flush. But probably it would be not saved in database becouse I think this is done within a transaction. So when I was thinkg about this problem I came up with this solution, but I did not have time to actually write it yet.
The problem with this solution would be that it could generate quite a lot of queries to the database, so it would require quite a lot of optimalization. If you want to use such thing only in few places I recommend doing the check on the place where the duplicate might arise. So for example where you want to create an entity and save it:
| |||
|
feedback
|