Last active
October 15, 2018 08:16
-
-
Save nyl2k8/ed728c3ec298339fdd0f736386332519 to your computer and use it in GitHub Desktop.
PDO Try Catch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); | |
// Add PDO query below here. | |
if($sth->execute()){ | |
$arr = $sth->errorInfo(); | |
print_r($arr); | |
} | |
} | |
catch (PDOException $e) { | |
echo $e->getMessage(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment