程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php執行多個存儲過程的方法【基於thinkPHP】

php執行多個存儲過程的方法【基於thinkPHP】

編輯:PHP綜合

本文實例講述了php執行多個存儲過程的方法。分享給大家供大家參考,具體如下:

從以前的使用原生代碼來看,只需要將結果集關閉即可,即

$this -> queryID -> close();

使用mysqli方式,修改DbMysqli.class.php,將query函數改為:

public function query($str) {
    $this -> initConnect(false);
    if (!$this -> _linkID) {
      return false;
    }
    $this -> queryStr = $str;
    //釋放前次的查詢結果
    if ($this -> queryID)
      $this -> free();
    N('db_query', 1);
    // 記錄開始執行時間
    G('queryStartTime');
    $this -> queryID = $this -> _linkID -> query($str);
    // 對存儲過程改進
    $ret = array();
    $this -> debug();
    if (false === $this -> queryID) {
      $this -> error();
      return false;
    } else {
      $this -> numRows = $this -> queryID -> num_rows;
      $this -> numCols = $this -> queryID -> field_count;
      $ret = $this -> getAll();
    }
    //主要將這段移動了一下,關閉結果集
    if ($this -> _linkID -> more_results()) {
      while (($res = $this -> _linkID -> next_result()) != NULL) {
        $this -> queryID -> close();
      }
    }
    return $ret ;
}

下面就可以調用多個存儲過程,或許執行其他SQL操作,可以直接使用M函數

在使用thinkphp的時候發現執行多個存儲過程只能執行第一個,看了一下源碼Driver/Db/DbMysql.class,已經對存儲過程進行了一定處理,但是不知道為什麼運行不了。

用原生代碼解決了問題(下面是部分代碼):

$db = new mysqli(C("DB_HOST"), C("DB_USER"), C("DB_PWD"), C("DB_NAME"));
if (mysqli_connect_errno())
throw_exception(mysqli_connect_error());
$t2 = microtime(true);
echo "數據庫連接用時:" . (($t2 - $t1)) . "s <br />";
$arr = array();
// 1st Query
$procedure = "call p1()";
$result = $db->query($procedure);
if ($result) {
// Cycle through results
while ($row = $result->fetch_object()) {
//添加到對象數組
$arr[] = $row;
}
// 這裡是最重要的,需要將游標移動下一個結果集
$result->close();
$db->next_result();
}
$procedure = "call p2()";
$result = $db->query($procedure);
if ($result) {
// Cycle through results
while ($row = $result->fetch_object()) {
//添加到對象數組
$arr[] = $row;
}
// 這裡是最重要的,需要將游標移動下一個結果集
$result->close();
$db->next_result();
}

更多關於thinkPHP相關內容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結》、《ThinkPHP常用方法總結》、《smarty模板入門基礎教程》及《PHP模板技術總結》。

希望本文所述對大家基於ThinkPHP框架的PHP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved