Hi,
I'm trying to bind some parameters with Phalcon\Mvc\Model\Query\Builder::where method.
This is my code:
$builder = $this->modelsManager->createBuilder()
->addFrom('\Namespace\Model', 'm')
->where('m.id=:id:', array('id' => $id));
But it produces the following error:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ':id' at line 1
What am I doing wrong?