Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso ricevere un errore durante l'esecuzione di più query con PDO?

Ho trovato la risposta usando una dichiarazione preparata. Dopo aver eseguito il ciclo di tutti i set di righe, posso verificare se l'ultima query eseguita ha causato un errore utilizzando $stmt->errorInfo() .

$db = new PDO("mysql:host=localhost;dbname=test", 'root', '');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, 1);

$sql = "
DELETE FROM car; 
INSERT INTO car(name, type) SELECT name, from FROM vehicle;
";

$stmt = $db->prepare($sql);
$stmt->execute();
$i = 0;

do {
  $i++;
} while ($stmt->nextRowset());

$error = $stmt->errorInfo();
if ($error[0] != "00000") {
  echo "Query $i failed: " . $error[2];
  die();
}