Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Troubleshooting PDO: Error not caught when executing prepared statement [duplicate]

I have run into a problem using PDO because an error was not caught.

The code is simple and works just fine, I'll just include a sample to avoid confusion:

$sql = 'INSERT INTO somedatetable (something) 
        VALUES (:something) 
        ON DUPLICATE KEY UPDATE something=:something';

$values = array(":something" => $something);

try {
    $stmt = $dbh->prepare($sql);    
    $stmt->execute($values);    
} catch (PDOException $e) {
    echo "Error: " . $e->getMessage() . "<br />\n";
}

The code works fine, however when working on a new module, I ran into a problem that no records were added or modified and no error was caught.

$stmt returned false but I did not have a clue why or how to find the error.

The solution was simple in the end, I was using a limited MySQL user that did not have write permissions to the table. These errors always displayed right away when using mysql, but using PDO I do not know how to get to them.

How do I get PHP / PDO to display or catch these kind of database errors?

like image 900
jeroen Avatar asked Dec 23 '22 12:12

jeroen


1 Answers

PDO::errorInfo() or PDOStatement->errorInfo()

As for exceptions, check the docs for "Errors and error handling" in PDO. Exceptions aren't thrown by default, which is why you might want to enable them.

See as well:

  • My PDO statement doesn't work?
like image 80
Ryan Graham Avatar answered Jan 14 '23 13:01

Ryan Graham