新版本的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这个属性,前者不想那样用,因为担心占用内存,后者发现没效果。
解决方案:
使用两个不同的db对象就可以了。
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这个属性,前者不想那样用,因为担心占用内存,后者发现没效果。
解决方案:
使用两个不同的db对象就可以了。
$db = Sys::getdb();
$db2 = Sys::getdb2();//注:getdb2函数写法和getdb完全一样,都通过static获得唯一的连接资源对象
$sql = "select * from log_flow limit 20";
$stat = $db->query($sql);
while ($row = $stat->fetch()) {
//要点在这里,db2是另一个对象
$db2->update('log_flow', array('created_at' => ($row['created_at']+1) ),
'id='.$row['id'] );
}
echo "ok\n";