如何使用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;
}
答案 0 :(得分:0)
您可以按以下方式调用存储过程
$this->db->query("call test_proc()");