I am trying to INSERT OR UPDATE IF EXISTS in one transaction.

in mysql, I would generally use DUPLICATE KEY ("UPDATE ON DUPLICATE KEY".) I'm aware of many solutions to this problem using various SQL variants and sub-queries, but I'm trying to implement this in Doctrine (PHP ORM). It seems there would be Doctrine methods for doing this since it's so feature packed, but I'm not finding anything. Is this sort of thing a problem using PHP ORM packages for some reason? Or do any Doctrine experts know how to achieve this through hacks or any means?

link|improve this question

I've started work on a plugin to implement this functionality. It's still in the early stages but tested and working for my use-case. It's available at: github.com/m14t/m14tDoctrineRecordPlugin Test cases, bug reports and pull requests welcome. – m14t Apr 19 at 7:39
feedback

2 Answers

The only thing I can think of is to query first for the entity if it exists otherwise create new entity.

if(!$entity = Doctrine::getTable('Foo')->find(/*[insert id]*/))
{
   $entity = new Foo();
}
/*do logic here*/
$entity->save();
link|improve this answer
1  
There's nothing that ensures that the row isn't created between the query and the save. – Ilia Jerebtsov Dec 30 '09 at 3:08
I would usually do another find before the save statement but Doctrine uses query caching so it will still return the entity. – ken Jan 1 '10 at 7:04
3  
Isn't that what transactions are for? – chiborg Jan 7 '11 at 12:51
feedback

Doctrine supports REPLACE INTO using the replace() method. This should work exactly like the ON DUPLICATE KEY UPDATE you were looking for.

Docs: Replacing Records

link|improve this answer
4  
the only problem with REPLACE seems to be that it drops and then creates a new row (rather than performing an actual UPDATE), thus dropping the auto increment ids (in this case, my primary id). Am I missing something here? eg - my auto increment id is 9, but the count is as 3000. When I perform REPLACE INTO for row 9, the new row id is 3001. – sean smith Jul 15 '09 at 17:51
Its not a solution, the replace seems make a delete/insert and change autonumeric values (ex id) – Exos Nov 27 '11 at 15:36
above Link is broken. – Fronker Dec 2 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

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