Ben PDO ile exec yaparken diğer tamponsuz sorgular aktif iken 2014 sorguları yürütmek olamaz olsun

2 Cevap php

Ben birden çok güncelleştirme bir PDO :: exec komutunu yapıyorum:

$MyPdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY,true);
$MyPdo->exec("update t1 set f1=1;update t2 set f1=2");

Ben bir hareket içine yapıyorum ve ben almaya devam:

SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

Bu yalnızca sorgu / ler vardır

2 Cevap

Tek bir sorgu olarak ifadeleri çalıştırmak gerekir. Bir teker teker çalıştırın:

$MyPdo->exec("update t1 set f1=1");
$MyPdo->exec("update t2 set f1=2");

Ben aynı sorunla karşılaştı ve herhangi bir çözüm bulamadık:

$pdo->exec('update....;update...;')
$pdo->exec('update....;update...;')

Before php 5.3 you could close connection by destroy $pdo, in php 5.3+, you could use $pdo->query() to execute multi-query, take care that $pdo->exec() finished does not mean the sql server finished the execution:

$cnt=1000;
$sql='';
$j=0;
for ($i=0;$i<$cnt;++$i)
    {++$j;
     $sql.="update sem_UploadKeywordQueue set ProductCount='{$i}' where ID='{$i}';";
     if ($j==100)
        {$pdo=new PDO('mysql:host=domain.com;port=3306;dbname=db', "user", "pass");
         $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
         $pdo->exec($sql);
         $pdo=null;
         $sql='';
         $j=0;
        }
    }
if ($sql)
   {$pdo->exec($sql);
   }

diyism için