News Feed
Jobs Feed
Sections




News Archive
Lorna Mitchell's Blog:
Handling SQL Errors in PDO
November 16, 2011 @ 09:43:34

Lorna Mitchell has a quick new post showing one way to handle SQL errors in PDO that could pop up because of badly written/generated SQL statements.

I love PHP's PDO (PHP Data Objects) extension; it gives a consistent, object-oriented interface to handling all kinds of relational database backends. One thing that annoys me is that the MySQL driver for PDO defaults to a silent error mode which can make SQL errors tricky to spot!

In her two code snippets she shows a failing PDO request (that fails silently) and a method for catching this issue - checking the result of the "errorCode" method to see if it equals "0" (zero). If there were errors, you can use the "errorInfo" function to get to them. This will return the SQL error code, the driver-specific error code and a driver-specific error message.

0 comments voice your opinion now!
pdo error handling errorcode errorinfo tutorial


blog comments powered by Disqus

Similar Posts

Brian Snugg's Blog: Reverse Proxy in PHP5

DZone.com: What you must know about PHP errors...

MT-Soft Blog: Creating a secure PHP production environment from Source Code

CodePoets.co.uk: How to use PHP and PEAR MDB2 (Tutorial)

DevShed: Manipulating String Literals with Interpreter Classes in PHP 5


Community Events











Don't see your event here?
Let us know!


community application framework example interview series functional unittest podcast phpunit release language zendframework2 opinion tool development testing code conference introduction

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework