Hi, I'm using this https://github.com/fishjerky/phalcon-mssql library but when I try to call a stored procedure doesn't work.
Example:
$user = new Usuariosgrupossistema();
$result = $user->getReadConnection()->query(`CALL spGetOffice`)->fetchAll();
var_dump($result);
//$result in view -> array(0) { }
CALL spGetOffice is wrapped with backsticks
Thanks in advance