highlight icon indicating copy to clipboard operation
highlight copied to clipboard

PHP: caught exception

Open brendt opened this issue 1 year ago • 0 comments

27         try {
28             $this->pdo
29                 ->prepare($query->getSql())
30                 ->execute($bindings);
31         } catch (PDOException $pdoException) {
32             throw new QueryException($query, $bindings, $pdoException);  < 
33         }

brendt avatar Aug 28 '24 17:08 brendt