Is it possible to rewind a PDO result?(是否可以倒回 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 结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以倒回 PDO 结果?


基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01