vote up 1 vote down star
1

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 subqueries, 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?

flag

38% accept rate

2 Answers

vote up 2 vote down

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|flag
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 at 17:51
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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