Blogger Information
Blog 28
fans 0
comment 0
visits 16911
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月22日- pdo操作:连接、增删查改操作
SmileHoHo
Original
726 people have browsed it

PDO操作数据库

PDO 预处理

PDOStatement: 预处理对象(SQL语句对象)
prepare(): 预处理方法, 用来生成预处理对象PDOStatement

PDO 绑定参数

bindParam(): 将参数绑定到SQL语句模板上
常用的预定义常量:
  • PDO::PARAM_INT: 整数类型
  • PDO::PARAM_STR: 字符串类型
  • PDO::FETCH_ASSOC: 获取结果集中的关联部分

    PDOStatement 类常用方法

  • execute(): 执行SQL语句(读/写)
  • rowCount(): 返回受影响的记录数量(不适合SELECT)
  • errorInfo(): 返回错误信息数组
  • fetch(): 获取结果集中的下一行
  • fetchAll(): 返回结果集中的所有行
  • fetchColumn(): 返回结果集下一行的单独的一列
  • bindColumn(): 将结果集某字段绑定到指定变量上

    手抄作业






Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments