欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP5.2中PDO的简单使用方法

程序员文章站 2023-12-16 13:02:22
本文实例讲述了php5.2中pdo的简单使用方法。分享给大家供大家参考,具体如下: 一、pdo配置 1、确保php版本为5.2.5以上 2、在php.ini中找到dy...

本文实例讲述了php5.2中pdo的简单使用方法。分享给大家供大家参考,具体如下:

一、pdo配置

1、确保php版本为5.2.5以上
2、在php.ini中找到dynamic extensions扩展部分,去掉extension=php_pdo.dll前面的分号
3、去掉相应数据库pdo扩展前面的分号,如:extension=php_pdo_mysql.dll

二、范例中数据库

create table tablename (
  id mediumint(8) unsigned not null auto_increment,
  str varchar(50) not null default '''',
  primary key (id)
);

三、程序范例

<?php
$dsn = "mysql:host=localhost;dbname=test";
$user = ''root'';
$passwd = ''123456'';
try{
    $db = new pdo($dsn, $user, $passwd);
}catch (pdoexception $e)
{
    echo "链接数据库失败!";
    print "异常信息: ". $e->getmessage() . "<br/>";
    print "异常文件: " . $e->getfile() . "<br/>";
    print "异常行号: " . $e->getline() . "<br/>";
    exit();
}
//$sql = "insert into tablename set str = ''hello''";
//$count = $db->exec($sql); //返回值为影响的行数
//$sql = "delete from tablename where str = ''hello'' limit 1";
//$count = $db->exec($sql); //返回值为影响的行数
//预处理需要查询的sql语句
//$db->setattribute(pdo::attr_case, pdo::case_natural); //列名按照原始的方式(字段)
$sql = "select * from tablename where id < :id and str = :string"; //sql语句(参数绑定方式)
$query = $db->prepare($sql); //预处理
//用一组绑定参数执行一遍查询
$query->execute(array('':id''=>1, '':string''=>''hello'')); //处理语句(参数绑定方式)
//$query->setfetchmode(pdo::fetch_assoc); 关联数组形式(只通过字段名下标访问数组内容)
while($item = $query->fetch(pdo::fetch_assoc)) //循环获取数据
{
    echo $item[''id''].":".$item[''str'']."<br/>";
    //print_r ($item);
}
//用另一组绑定参数,再执行一遍查询
$query->execute(array('':id''<=10, '':string''=>''helloworld'')); //处理语句(参数绑定方式)
//$query->setfetchmode(pdo::fetch_assoc); 关联数组形式(只通过字段名下标访问数组内容)
while($item = $query->fetch(pdo::fetch_assoc)) //循环获取数据
{
    echo $item[''id''].":".$item[''str'']."<br/>";
    //print_r ($item);
}
$db = null; //释放数据库链接
?>

更多关于php相关内容感兴趣的读者可查看本站专题:《php操作office文档技巧总结(包括word,excel,access,ppt)》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。

上一篇:

下一篇: