程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 執行事務的時候pdo出現問題,事務pdo

php 執行事務的時候pdo出現問題,事務pdo

編輯:關於PHP編程

php 執行事務的時候pdo出現問題,事務pdo


新版本的pdo會有這個問題: 

General error: 2014 Cannot execute queries while other unbuffered queries are active.  Consider using PDOStatement::fetchAll().  Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.' in。。。 

意思是要麼使用fetchAll(),要麼使用MYSQL_ATTR_USE_BUFFERED_QUERY這個屬性,前者不想那樣用,因為擔心占用內存,後者發現沒效果。 

 $this->db->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);

參考博客:

http://www.flashj.cn/wp/pdo-transaction-err-in-php.html

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