Reset cursor position in PDO(重置 PDO 中的光标位置)
问题描述
$data=$stmt->fetchAll(); //Dumping the data shows the result. It is also setting the cursor at the end
while($data=$stmt->fetch())
{
//Does not enters loop
//If fetchAll() removes it work as usual
}
我知道它不需要两次获取数据.但我的主要问题是如何在 PDO 中重置光标位置?
I know It dont need to fetch data twice. But my main question is How to reset cursor position in PDO?
推荐答案
AFAIK 无法使用 PDO 重置光标位置 - 这可能与某些不支持重置内部光标的数据库的兼容性有关.
AFAIK there is no possibility to reset cursor position with PDO - that might something to do with compatibility with some databases, that don't support resetting internal cursors.
如果你想对结果迭代两次,把它取到数组中并在这个数组上迭代:
If you want to iterate twice over the results, fetch it to the array and iterate over this array:
<?php
$results = $stmt->fetchAll();
foreach($results as $row) {
// first
}
foreach($results as $row) {
// second
}
编辑 某些数据库支持可滚动游标.要使用它,请将 PDO::CURSOR_SCROLL
标志添加到 prepare
方法(参见 PDOFetch 文档页面).但这只会增加向前或向后移动的可能性,而不是完全倒带.此外,并非所有数据库都支持这种类型的游标(例如 MySQL 不支持).
Edit Some databases support scrollable cursors. To use that, add PDO::CURSOR_SCROLL
flag to prepare
method (see examples at PDOFetch documentation page). But that only adds possibility to move forward or backward, not rewind completely. Also, not all databases support that type of cursor (e.g. MySQL doesn't).
这篇关于重置 PDO 中的光标位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:重置 PDO 中的光标位置
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01