Heim  >  Artikel  >  Backend-Entwicklung  >  php中pdo错误处理方法详解

php中pdo错误处理方法详解

WBOY
WBOYOriginal
2016-07-25 08:54:381026Durchsuche
  1. try {
  2.  $db = new pdo('mysql:host=localhost;dbname=test', $user, $pass);
  3.  $db = null;
  4. } catch (pdoexception $e) {
  5.  print "error: " . $e->getmessage() . "
    ";
  6.  die();
  7. }
  8. ?>
复制代码

这里利用php 5面向对象的异常处理特征,如果里面有异常的话就初始化调用pdoexception来初始化一个异常类。

pdoexception异常类的属性结构:

  1. class pdoexception extends exception
  2. {
  3.  public $errorinfo = null; // 错误信息,可以调用 pdo::errorinfo() 或 pdostatement::errorinfo()来访问
  4.  protected $message; // 异常信息,可以试用 exception::getmessage() 来访问
  5.  protected $code; // sql状态错误代码,可以使用 exception::getcode() 来访问
  6. }
  7. ?>
复制代码

这个异常处理类是集成php 5内置的异常处理类。 php 5内置的异常处理类结构:

  1. class exception
  2. {
  3.  // 属性
  4.  protected $message = 'unknown exception'; // 异常信息
  5.  protected $code = 0; // 用户自定义异常代码
  6.  protected $file; // 发生异常的文件名
  7.  protected $line; // 发生异常的代码行号
  8.  // 方法
  9.  final function getmessage(); // 返回异常信息
  10.  final function getcode(); // 返回异常代码
  11.  final function getfile(); // 返回发生异常的文件名
  12.  final function getline(); // 返回发生异常的代码行号
  13.  final function gettrace(); // backtrace() 数组
  14.  final function gettraceasstring(); // 已格成化成字符串的 gettrace() 信息
  15. }
  16. ?>
复制代码

相应的,在代码中可以合适的调用 getfile() 和 getline() 来进行错误定位,更方便的进行调试。 使用面向过程的方法 代码:

  1. $db = new pdo('mysql:host=localhost;dbname=test', $user, $pass);
  2. $rs = $db->query("select aa,bb,cc from foo");
  3. if ($db->errorcode() != '00000'){
  4.  print_r($db->errorinfo());
  5.  exit;
  6. }
  7. $arr = $rs->fetchall();
  8. print_r($arr);
  9. $db = null;
  10. ?>
复制代码

pdo和pdostatement对象有errorcode() 和 errorinfo() 方法,如果没有任何错误, errorcode() 返回的是: 00000 ,否则就会返回一些错误代码。 errorinfo() 返回的一个数组,包括php定义的错误代码和mysql的错误代码和错误信息,数组结构如下: array (  [0] => 42s22  [1] => 1054  [2] => unknown column 'aaa' in 'field list' ) 每次执行查询以后,errorcode() 的结果都是最新的,所以我们可以很容易自己控制错误信息显示。 在使用pdo进行那个php和数据库开发过程中,如果再碰到错误咋办?按照上面的方式处理吧。

11.3.4 pdo的错误处理

pdo提供了两个获得程序中的错误信息的方法,一个是errorcode()方法;另一个是errorinfo()方法。

1.errorcode()方法

errorcode()方法用于获取在操作数据库句柄时所发生的错误代码,这些错误代码被称为sqlstate代码,该方法的语法格式如下:

01 string errorcode ( void ) errorcode()方法的返回值为一个sqlstate,sqlstate是由5个数字和字母组成的代码。

使用errorcode()方法的示例:

  1. $dsn = 'mysql:dbname=shop;host=localhost';
  2. $user_name = 'root';
  3. $user_psw = 'root';
  4. $pdo = new pdo($dsn, $user_name, $user_psw);
  5. $pdo->exec("update mytable set age=28 where id=1 ");//表mytable不存在
  6. echo "errorcode为: ".$pdo->errorcode();
  7. ?>
复制代码

输出的错误代码,如下图:

php pdo错误处理

2.errorinfo()方法

errorinfo()方法用于获得操作数据库句柄时所发生的错误信息,该方法的语法格式如下:

01 array errorinfo ( void ) errorinfo()方法的返回值为一个数组,该数组里面包含了相关的错误信息。

使用errorinfo()方法:

  1. $dsn = 'mysql:dbname=shop;host=localhost';
  2. $user_name = 'root';
  3. $user_psw = 'root';
  4. $pdo = new pdo($dsn, $user_name, $user_psw);
  5. $pdo->exec("update mytable set age=28 where id=1 ");//表mytable不存在
  6. echo "errorinfo为: ";
  7. print_r($pdo->errorinfo());
  8. ?>
复制代码

输出的错误信息,如下图: php pdo错误处理



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn