The following code snippet demonstrates some peculiar behaviour from Doctrine.
$user = Doctrine::getTable('User')->find(1);
$user->name = 'Zoppy';
// This line prevents the subsequent $user->save() from working as expected
$old_user = Doctrine::getTable('User')->find(1);
$user->save();
// Does not print 'Zoppy'
echo Doctrine::getTable('User')->find(1)->name . "\n";
What is going on here?
Is there some way to load the old version of a record before executing a save? It seems that Doctrine is caching something somewhere -- what exactly, and how do I turn it off! (At least temporarily.)