I'm using the SQL Mapper to update records in my MYSQL DB which is working ok - but I can't see how to check what the outcome of the update was from the call to save() or update().
Update seems to return the entire mapper object which doesn't offer an obvious way of checking if the update failed. Should I be checking the return code or catching an exception?
Any help appreciated!
Matt
libregeek is right, you should enable PDO exceptions and catch them:
See also this topic.