是否可以倒回 PDO 结果?

Is it possible to rewind a PDO result?(是否可以倒回 PDO 结果?)
本文介绍了是否可以倒回 PDO 结果?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试为 PDO 语句的结果编写一个迭代器,但我找不到任何倒带到第一行的方法.我想避免调用 fetchAll 和存储所有结果数据的开销.

I'm trying to write an iterator for results from a PDO statement but I can't find any way of rewinding to the first row. I would like to avoid the overhead of calling fetchAll and storing all the result data.

// first loop works fine
foreach($statement as $result) {
    // do something with result
}

// but subsequent loops don't
foreach($statement as $result) {
    // never called 
}

有什么方法可以重置语句或查找第一行吗?

Is there some way of reseting the statement or seeking the first row?

推荐答案

我很确定这与数据库有关.因此,这是您应该尽量避免的.但是,我认为您可以通过启用缓冲查询来实现您想要的.如果这不起作用,您始终可以将结果放入带有 fetchAll.这两种解决方案都会对您的应用程序性能产生影响,因此如果结果集很大,请三思.

I'm pretty sure this is database dependent. Because of that, it is something you should try to avoid. However, I think you can achieve what you want by enabling buffered queries. If that doesn't work, you can always pull the result into an array with fetchAll. Both solutions have implications for your applications performance, so think twice about it, if the resultsets are large.

这篇关于是否可以倒回 PDO 结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Why can#39;t I update data in an array with foreach loop?(为什么我不能用 foreach 循环更新数组中的数据?)
Foreach for arrays inside of an array(Foreach 用于数组内的数组)
PHP array get next key/value in foreach()(PHP 数组在 foreach() 中获取下一个键/值)
Using preg_match on a multidimensional array to return key values arrays(在多维数组上使用 preg_match 返回键值数组)
php foreach as key, every two number as a group(php foreach 为key,每两个数字为一组)
Treat a PHP class that implements Iterator as an array(将实现 Iterator 的 PHP 类视为数组)