php mysql procedure获取多个结果集
protected function getRs($id) { $db = new mysqli(C("DB_HOST"), C("DB_USER"), C("DB_PWD"), C("DB_NAME"), C("DB_PORT")); if (mysqli_connect_errno()) throw_exception(mysqli_connect_error()); $sql = "call `room_match`.`wsKocMatchLoadResultHeader`($id);"; $results = array(); if ($db->multi_query($sql)) { do { $records = array(); if ($result = $db->use_result()) { while ($row = $result->fetch_array(MYSQLI_ASSOC)) { $records[] = $row; } $result->close(); } $results[] = $records; } while ($db->next_result()); } $db->close(); $this->assign("list1", $results[1]); $this->assign("list2", $results[2]); $this->assign("list3", $results[3]); }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。