Calling a stored procedure from CodeIgniter's Active Record class

后端 未结 6 486
旧时难觅i
旧时难觅i 2020-12-05 17:09

In my CI application setup to query a mssql database. I want to execute a stored procedure from active record. But I

6条回答
  •  庸人自扰
    2020-12-05 17:32

    public function callSp_model{
       $sql = "CALL Materialwise_PURC_report(?,?,?)";
        $query = $this->lite_db->query($sql,array($supplierid,$fromdate,$todate));
        return $query->result_array(); }
    

提交回复
热议问题