Blogger Information
Blog 13
fans 0
comment 0
visits 13294
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP:pdo接口:连接、增删查改
大林
Original
1345 people have browsed it

# # # 一、数据库配置连接

利用pdo配置数据库,写法有很多种,善用数组变量,会让逻辑更加清晰。


反正都是用new PDO这个接口函数连接。

# # # 二、数据库增删查改

1、新增数据库信息。

首相将要处理的对象的进行预处理prepare,生成预处理对象PDOStatement。
然后将参数绑定到SQL语句模板上,PDO::PARAM_STR为预定于常量类型字符串类型。
最后执行SQL操作,execute()为执行SQL语句(读/写)rowCount()为返回受音响的记录数量。errorInfo()为返回错误信息数组。

2、修改数据库信息

方法都一样差不多,就是将预处理第一个参数改成MYSQL语句UPDATE,真假主键定位id。

3、删除数据库信息

都一样,修改一下里面的信息就好了。

4、查询数据

步骤跟前面一样,先预定义,然后定位提取的数据,运用数组循环将需要的数据打印出来。

# # 总结:




前面是感觉很懵,多看了几遍视频,就感觉很简单了。耐心很重要,,很多功能实现就是各种自定义变量,然后代入,再代入。如果记忆力好点,逻辑能力好点,就可以说非常简单了,会学的很快。总体感觉就是这样吧。

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
Author's latest blog post