What is a decent way to handle PDO error when using try catch block?
Currently I have something like this:
BlogModel.php
class BlogModel extends Model {
public function save($id, $value) {
$stmt = $this->getDb()->prepare('UPDATE setting SET name = :name WHERE id = :id');
$stmt->bindParam(':id', $id);
$stmt->bindParam(':name', $values);
return ($stmt->execute() !== false) ? $id : false;
}
}
So, in the controller BlogController.php, I would do something like this:
<?php
class Blog extends Controller {
public function comments()
{
$data = array();
$model = new BlogModel;
if ($model->save(2,'test')) {
$data['result']['message'] = 'Settings saved';
$data['result']['status'] = 'success';
} else {
$data['result']['message'] = 'Could not save the settings';
$data['result']['status'] = 'error';
}
$view = new View("view.php", $data)
$view->render();
}
}
?>
This is the way I handle PDO error using if conditions. What is the decent way to translate this into try catch block? I don't want to code the variables ($data['result']['message'] $data['result']['status']) all the time.
Is possible to add "throw exception" in the catch block somehow?
If there is a lot of try catch blocks in the controller, it going to look messy.. right?

