I am trying to save in cascade some users:
$user = new User();
$user->name = 'xxx';
$user->location->id = 1;
$user->location->name = 'yyy';
$user->save;
$user2 = new User();
$user2->name = 'zzz';
$user2->location->id = 1;
$user2->location->name = 'yyy';
$user2->location->zip = '123456';
$user2->save;
In this situation I wish Doctrine to be smart enough and update the location 1 since I am changing the content for the id 1, but what I have instead is another insert. I tried to workaround using a preSave() method inside User:
public function preSave( Doctrine_Event $event )
{
$invoker = $event->getInvoker();
if ( /...decide to UPDATE the record .../ )
{
$invoker->state( Doctrine_Record::STATE_DIRTY );
}
else
{
$invoker->state( Doctrine_Record::STATE_CLEAN );
}
}
but when doctrine tries to UPDATE it doesn't have identifier and produces this error:
Doctrine_Connection_Mysql_Exception: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens
Isn't this something that Docrtrine should provide out of the box? Am I missing something here? Why do I need to implement this behavior by hand?
Further Notes
We have 3 cases that dictate whether the record should be inserted, updated, or simply related:
1
- Brand new user to our database - should be inserted
- Brand new location to our database - should be inserted
2
- Brand new user to our database - should be inserted
- Existing location - should be linked to user record
3
- Brand new user to our database - should be inserted
- Existing location id, updated data - should be updated and linked to user record
We need to find the most efficient way to do this. Obviously we can do a multitude of selects in preSave() etc, we just need to get the most out of Doctrine