调用存储过程

  1. /**
  2. * 调用存储过程
  3. *
  4. * @param string $procedureName 要调用的存储过程名称
  5. * @param array $bindParams 绑定的参数
  6. * @param bool|true $isSelect 是否为返回数据集的语句
  7. *
  8. * @return array|int
  9. */
  10. $this->db()->callProcedure($procedureName = '', $bindParams = array(), $isSelect = true);

原文: http://doc.cmlphp.com/devintro/model/mysql/callre.html