Calling a stored procedure from CodeIgniter's Active Record class

后端 未结 6 482
旧时难觅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:46

    Yes , try this in your model.

    $this->db->query("call {storedprocedure function name} ");
    

    if you encounter trouble calling more than 1 stored procedure at a time you need to add the following line

    /* ADD THIS FUNCTION IN SYSTEM/DATABASE/DB_ACTIVE_REC */
    /* USAGE $this->db->freeDBResource($this->db->conn_id); */
    function freeDBResource($dbh){
        while(mysqli_next_result($dbh)){
                if($l_result = mysqli_store_result($dbh)){
                  mysqli_free_result($l_result);
                }
            }
    }
    

提交回复
热议问题