PHP PDO MySQL scrollable cursor doesn't work

前端 未结 1 1183
悲哀的现实
悲哀的现实 2020-12-18 11:10

For instance, I have a table with two fields: id, value. I\'ve inserted almost 100k rows in this table.

I want to use scrollable cursor. I wrote the following code:<

相关标签:
1条回答
  • 2020-12-18 11:22

    Seems that mysql does not support scrollable cursors.

    https://bugs.php.net/bug.php?id=34625

    http://www.php.net/manual/en/pdostatement.fetch.php#105277

    Will PDO laststatment->fetchAll(PDO::FETCH_COLUMN, $column) rerun the query each call?

    0 讨论(0)
提交回复
热议问题