gpt4 book ai didi

php - 使用 Postgres+PHP 的无缓冲查询?

转载 作者:行者123 更新时间:2023-11-29 12:15:00 26 4
gpt4 key购买 nike

有没有办法从 PHP 对 PostgreSQL 执行无缓冲查询,或者至少限制驱动程序使用的本地缓冲区的大小?

最佳答案

据我所知,从我调查这个时起,在 PHP 上没有使用 pgsql 驱动程序的无缓冲查询。但是下面的代码可以帮助您解决这个问题:

$curSql = "DECLARE cursor1 CURSOR FOR SELECT * FROM big_table";
$con = new PDO("pgsql:host=whatever dbname=whatever", "user", "pass");
$con->beginTransaction(); // cursors require a transaction.
$stmt = $con->prepare($curSql);
$stmt->execute();

$innerStatement = $con->prepare("FETCH 1 FROM cursor1");

while($innerStatement->execute() && $row = $innerStatement->fetch(PDO::FETCH_ASSOC)) {
echo $row['field'];
}

来源:http://codepoets.co.uk/2014/postgresql-unbuffered-queries/#more-936

关于php - 使用 Postgres+PHP 的无缓冲查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1890447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com