PHP database pdo--03, using the ErrorInfo method to get PDO error message

Source: Internet
Author: User

When you actually use PDO to perform operations on a database, errors such as incorrect SQL statements can occur.

Two ways to report errors are given in the PDO object

$pdo->errorcode (); ---> Get the error code (it's a number)

$pdo->errorinfo (); ---> Get error messages (arrays)

The ErrorInfo method can be used directly in practical applications.

You can perform an error check on the PDO object after you have finished executing the SQL statement

if ($res= = =false        ) {$errMS$pdo-errorinfo (        ); Echo ' Error code: '. $errMS [0]. ' <br/> '. ' Error number: '. $errMS [1]. ' <br/> '. ' Error message: '. $errMS [2]. ' <br/> ';    }

$errMS = $pdo->errorinfo ();

$errMS is an array

$errMS [0] corresponds to the error code and $PDO->errorcode (); Same

$errMS [1] for error numbers

$errMS [2] Error details that correspond to MySQL console

PHP database pdo--03, using the ErrorInfo method to get PDO error message

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.