以防萬一它幫助任何人。我使用這個庫來處理CI中的存儲過程,它也支持多個結果集。
這裏是代碼
我把它叫做Mydb.php
<?php #if (! defined('BASEPATH')) exit('No direct script access allowed');
class Mydb
{
private $CI, $Data, $mysqli, $ResultSet;
/**
* The constructor
*/
function __construct()
{
$this->CI =& get_instance();
$this->Data = '';
$this->ResultSet = array();
$this->mysqli = $this->CI->db->conn_id;
}
public function GetMultiResults($SqlCommand)
{
/* execute multi query */
if (mysqli_multi_query($this->mysqli, $SqlCommand)) {
$i=0;
do
{
if ($result = $this->mysqli->store_result())
{
while ($row = $result->fetch_assoc())
{
$this->Data[$i][] = $row;
}
mysqli_free_result($result);
}
$i++;
}
while ($this->mysqli->next_result());
}
return $this->Data;
}
}
?>
調用它像這樣從控制器
$this->load->library('mydb');
$arr = $this->mydb->GetMultiResults("CALL GetReferrals()");
此外,請務必設置mysqli
司機 在application/config/database.php
$db['default']['dbdriver'] = 'mysqli';
不確定爲什麼你沒有選擇正確的答案。該文檔清楚地說明它是用於調用** PHP **數據庫函數。它沒有提到存儲過程。 – MikeMurko 2012-02-29 22:37:04