php中的pdo扩展为php访问数据库定义了一个轻量级的、一致性的接口,它提供了一个数据访问抽象层,这样,无论使用什么数据库,都可以通过一致的函数执行查询和获取数据。
pdo支持的php版本为php5.1以及更高的版本,而且在php5.2下pdo默认为开启状态、
下面是在php.ini中pdo的配置:
1
|
extension=php_pdo.dll |
为了启用对某个数据库的支持,需要在php配置文件中将相应的扩展打开,例如要支持mysql,需要开启下面的扩展
1
|
extension=php_pdo_mysql.dll |
下面是使用pdo对mysql进行基本的增删改查操作
创建test数据库,然后运行以下sql语句:
1
2
3
4
5
6
7
|
drop table if exists `test`; create table `test` ( `id` int(10) not null default '0' , `user` char(20) default null, primary key (`id`), key `idx_age` (`id`) ) engine=innodb default charset=utf8; |
程序代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php header( "content-type:text/html;charset=utf-8" ); $dsn = "mysql:dbname=test;host=localhost" ; $db_user = 'root' ; $db_pass = 'admin123' ; try { $pdo = new pdo( $dsn , $db_user , $db_pass ); } catch (pdoexception $e ){ echo '数据库连接失败' . $e ->getmessage(); } //新增 $sql = "insert into test (id,user) values (1,'phpthinking')" ; $res = $pdo -> exec ( $sql ); echo '影响行数:' . $res ; //修改 $sql = "update test set user='phpthinking' where id=1" ; $res = $pdo -> exec ( $sql ); echo '影响行数:' . $res ; //查询 $sql = "select * from test" ; $res = $pdo ->query( $sql ); foreach ( $res as $row ){ echo $row [ 'user' ]. '<br/>' ; } //删除 $sql = "delete from test where id=1" ; $res = $pdo -> exec ( $sql ); echo '影响行数:' . $res ; |
以上这篇pdo操作mysql的基础教程(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。