I'm using Zend Framework version 1.x
The documentation for the refresh
method of Zend_Db_Table_Row_Abstract
says only:
Refreshes properties from the database.
My question is what this method will return if the row has been deleted from the database in the meantime (ie. by some other process)?
Will it be able to handle that situation by either returning null or throwing an exception?
Thanks, Jakob