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

 2025-01-15  阅读 224  评论 8  点赞 243

摘要:本文实例讲述了php5.2中pdo的简单使用方法。分享给大家供大家参考,具体如下: 一、pdo配置 1、确保php版本为5.2.5以上 2、在php.ini中找到dynamic extensions扩展部分,去掉extension=php_pdo.dll前面的分号 3、去掉相应数据库pdo扩展前面的分号,如:extension=php_pdo_mys

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

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程序设计有所帮助。


标签:phpphp教程

评论列表:

  •   weihang233
     发布于 3天前回复该评论
  • 又学到了新知识!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0273秒, 内存占用1.94 MB, 访问数据库29次

冀ICP备19034377号