From: Operating system: Mac OS X PHP version: 5.3.10 Package: PDO related Bug Type: Bug Bug description:No PDO error if first SQL statement of a group is valid.
Description: ------------ I am submitting a group of two SQL statements to PDO. The first is valid, the second has a syntax error. PDO should throw an exception but doesn't. It only throws an exception when the first statement is invalid. Test script: --------------- //[symfony 1.4 environment] $conn = Propel::getConnection(); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $pdo_statement = $conn->prepare('SELECT 1; invalidstatement'); $pdo_statement->execute(); Expected result: ---------------- I expect to have an error thrown since the group of statements has a syntax error. Actual result: -------------- No error is thrown. -- Edit bug report at https://bugs.php.net/bug.php?id=61613&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=61613&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=61613&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=61613&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=61613&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=61613&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=61613&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=61613&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=61613&r=needscript Try newer version: https://bugs.php.net/fix.php?id=61613&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=61613&r=support Expected behavior: https://bugs.php.net/fix.php?id=61613&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=61613&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=61613&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=61613&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=61613&r=php4 Daylight Savings: https://bugs.php.net/fix.php?id=61613&r=dst IIS Stability: https://bugs.php.net/fix.php?id=61613&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=61613&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=61613&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=61613&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=61613&r=mysqlcfg