How to check if UPDATE statement was successful??? I can't find it https://docs.phalcon.io/en/latest/reference/phql.html
$success = $query->execute();
if ($success) {
$this->flash->success("ok");
}
is always returning true
$result = $query->execute();
$result->success()
is always returning "1"