如何使用codeigniter调用存储过程?

时间:2016-11-23 04:55:53

标签: php sql-server codeigniter stored-procedures jqgrid

如何使用codeigniter调用存储过程?请帮帮我

function ViewSchedule($dt_dari,$dt_to,$dt_org,$dt_emp){
        $result = $this->db->query("exec dailyAttdCrossTab '".$dt_dari."','".$dt_to."','".$dt_org."','".$dt_emp."'");

        return $result;
    }

1 个答案:

答案 0 :(得分:0)

您可以按以下方式调用存储过程

$this->db->query("call test_proc()");