Mvc\Model\Query\BuilderInterface::orderBy

abstract public orderBy (mixed $orderBy) ...

Mvc\Model\Query\Lang::parsePHQL

public static string parsePHQL (string $phql) Parses a PHQL statement returning an intermediate representation (IR)

Mvc\Model\Query\Status

implements Phalcon\Mvc\Model\Query\StatusInterface Source on GitHub 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 $phql = "UPDATE Robots SET name = :name:, type = :type:, year = :year: WHERE id = :id:"; $status = $app->modelsManager->executeQuery($phql, array( 'id' => 100, 'name' => 'Astroy Boy', 'typ

Mvc\Model\Query\BuilderInterface::orWhere

abstract public orWhere (mixed $conditions, [mixed $bindParams], [mixed $bindTypes]) ...

Mvc\Model\Query\BuilderInterface::where

abstract public where (mixed $conditions, [mixed $bindParams], [mixed $bindTypes]) ...

Mvc\Model\Query\Status::getMessages

public getMessages () Returns the messages produced because of a failed operation

Mvc\Model\Query\BuilderInterface::rightJoin

abstract public rightJoin (mixed $model, [mixed $conditions], [mixed $alias]) ...

Mvc\Model\Query\BuilderInterface::leftJoin

abstract public leftJoin (mixed $model, [mixed $conditions], [mixed $alias]) ...

Mvc\Model\Query\BuilderInterface::join

abstract public join (mixed $model, [mixed $conditions], [mixed $alias]) ...

Mvc\Model\Query\BuilderInterface::OPERATOR_OR

string OPERATOR_OR