We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e705c5 commit 848b816Copy full SHA for 848b816
1 file changed
src/Database/ResultSet.php
@@ -67,7 +67,7 @@ public function __construct(Connection $connection, string $queryString, array $
67
$this->pdoStatement->bindValue(is_int($key) ? $key + 1 : $key, $value, $types[$type] ?? PDO::PARAM_STR);
68
}
69
$this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC);
70
- $this->pdoStatement->execute();
+ @$this->pdoStatement->execute(); // @ PHP generates warning when ATTR_ERRMODE = ERRMODE_EXCEPTION bug #73878
71
72
} catch (\PDOException $e) {
73
$e = $connection->getSupplementalDriver()->convertException($e);
0 commit comments