php使用PDO连接mysql数据库
Posted 屌丝IT男
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php使用PDO连接mysql数据库相关的知识,希望对你有一定的参考价值。
<?php $dsn=‘mysql:host=localhost;dbname=mssc‘; $user=‘root‘; $password=‘‘; $status=1; try { $sql=‘select * from onethink_order where status=:status‘; $dbh=new PDO($dsn,$user,$password); $dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $stmt=$dbh->prepare($sql); $stmt->bindParam(‘:status‘,$status); $stmt->execute(); //返回插入、更新、删除的受影响行数 // echo $stmt->rowCount(); //返回最后插入的id // echo ‘ID of last insert:‘.$dbh->lastInsertId(); while ($row=$stmt->fetch(PDO::FETCH_ASSOC)) { echo $row[‘id‘]."\t".$row[‘status‘].‘</br>‘; } } catch (PDOException $e) { echo ‘SQL Query:‘.$sql.‘</br>‘; echo ‘Connection failed:‘.$e->getMessage(); } ?>
以上是关于php使用PDO连接mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章
php中使用mysqli和pdo扩展,测试连接mysql数据库的效率。