Class **Phalcon\\Mvc\\Model\\Query\\Status** ============================================ *implements* :doc:`Phalcon\\Mvc\\Model\\Query\\StatusInterface ` This class represents the status returned by a PHQL statement like INSERT, UPDATE or DELETE. It offers context information and the related messages produced by the model which finally executes the operations when it fails .. code-block:: php modelsManager->executeQuery($phql, array( 'id' => 100, 'name' => 'Astroy Boy', 'type' => 'mechanical', 'year' => 1959 )); \//Check if the update was successful if ($status->success() == true) { echo 'OK'; } Methods ------- public **__construct** (*unknown* $success, [*unknown* $model]) public :doc:`Phalcon\\Mvc\\ModelInterface ` **getModel** () Returns the model that executed the action public :doc:`Phalcon\\Mvc\\Model\\MessageInterface ` [] **getMessages** () Returns the messages produced because of a failed operation public *boolean* **success** () Allows to check if the executed operation was successful