您的位置:首页 > 其它

PDO中的错误处理errorCode方法

2017-11-22 10:46 204 查看
一 代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>通过errorCode()方法获取错误代码</title>
</head>
<body>
<table id="__01" width="464" height="336" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<img src="images/mysql_01.gif" width="464" height="139" alt=""></td>
</tr>
<tr>
<td>
<img src="images/mysql_02.gif" width="78" height="136" alt=""></td>
<td width="312" height="136" valign="top"><table width="310" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="30" align="center"><strong>ID</strong></td>
<td align="center"><strong>PDO</strong></td>
<td align="center"><strong>数据库</strong></td>
<td align="center"><strong>时间</strong></td>
</tr>

<?php
$dbms='mysql';     					//数据库类型 ,对于开发者来说,使用不同的数据库,只要改这个,不用记住那么多的函数
$host='localhost'; 					//数据库主机名
$dbName='db_database15';    		//使用的数据库
$user='root';      					//数据库连接用户名
$pass='root';          				//对应的密码
$dsn="$dbms:host=$host;dbname=$dbName";
try {
$pdo = new PDO($dsn, $user, $pass); 	//初始化一个PDO对象,就是创建了数据库连接对象$pdo
$query="select * from tb_pdo_mysqls";	//定义SQL语句
//$pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$result=$pdo->query($query);				//执行查询语句,并返回结果集
echo "errorCode为:".$pdo->errorCode();
foreach($result as $items){
?>
<tr>
<td height="22" align="center" valign="middle"><?php echo $items['id'];?></td>
<td align="center" valign="middle"><?php echo $items['pdo_type'];?></td>
<td align="center" valign="middle"><?php echo $items['database_name'];?></td>
<td align="center" valign="middle"><?php echo $items['dates'];?></td>
</tr>
<?php
}
} catch (PDOException $e) {
die ("Error!: " . $e->getMessage() . "<br/>");
}
?>
</table></td>
<td>
<img src="images/mysql_04.jpg" width="74" height="136" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="images/mysql_05.gif" width="464" height="61" alt=""></td>
</tr>
</table>
</body>
</html>

 

 

二 运行结果



 





大小: 4.7 KB

查看图片附件
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: