PHP的学习--连接MySQL的三种方式
记录一下PHP连接MySQL的三种方式。
先mock一下数据,可以执行一下sql。
- /*创建数据库*/
- CREATE DATABASE IF NOT EXISTS `test`;
- /*选择数据库*/
- USE `test`;
- /*创建表*/
- CREATE TABLE IF NOT EXISTS `user` (
- name varchar(50),
- age int
- );
- /*插入测试数据*/
- INSERT INTO `user` (name, age) VALUES('harry', 20), ('tony', 23), ('harry', 24);
第一种是使用PHP原生的方式去连接数据库。代码如下:
- <?php
- $host = 'localhost';
- $database = 'test';
- $username = 'root';
- $password = 'root';
- $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
- $insertName = 'testname';
- $connection = mysql_connect($host, $username, $password);//连接到数据库
- mysql_query("set names 'utf8'");//编码转化
- if (!$connection) {
- die("could not connect to the database.\n" . mysql_error());//诊断连接错误
- }
- $selectedDb = mysql_select_db($database);//选择数据库
- if (!$selectedDb) {
- die("could not to the database\n" . mysql_error());
- }
- $selectName = mysql_real_escape_string($selectName);//防止SQL注入
- $query = "select * from user where name = '$selectName'";//构建查询语句
- $result = mysql_query($query);//执行查询
- if (!$result) {
- die("could not to the database\n" . mysql_error());
- }
- while ($row = mysql_fetch_row($result)) {
- //取出结果并显示
- $name = $row[0];
- $age = $row[1];
- echo "Name: $name Age: $age \n";
- }
- //添加记录
- $insertName = mysql_real_escape_string($insertName);//防止SQL注入
- $insertSql = "insert into user(name, age) values('$insertName', 18)";
- $result = mysql_query($insertSql);
- echo $result . "\n";
- //更新记录
- $updateSql = "update user set age = 19 where name='$insertName'";
- $result = mysql_query($updateSql);
- echo $result . "\n";
- //删除记录
- $deleteSql = "delete from user where age = 19";
- $result = mysql_query($deleteSql);
- echo $result . "\n";
- mysql_close($connection);//关闭连接
其运行结构如下:
- Name: harry Age: 20
- Name: harry Age: 24
- 1
- 1
- 1
第二种时使用mysqli扩展去链接数据库,代码如下:
- <?php
- $host = 'localhost';
- $database = 'test';
- $username = 'root';
- $password = 'root';
- $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
- $insertName = 'testname';
- // 创建对象并打开连接,最后一个参数是选择的数据库名称
- $mysqli = new mysqli($host, $username, $password, $database);
- // 编码转化为 utf8
- if (!$mysqli->set_charset("utf8")) {
- printf("Error loading character set utf8: %s\n", $mysqli->error);
- } else {
- printf("Current character set: %s\n", $mysqli->character_set_name());
- }
- if (mysqli_connect_errno()) {
- // 诊断连接错误
- die("could not connect to the database.\n" . mysqli_connect_error());
- }
- $selectedDb = $mysqli->select_db($database);//选择数据库
- if (!$selectedDb) {
- die("could not to the database\n" . mysql_error());
- }
- if ($stmt = $mysqli->prepare("select * from user where name = ?")) {
- /* bind parameters for markers */
- $stmt->bind_param("s", $selectName);
- /* execute query */
- $stmt->execute();
- /* bind result variables */
- $stmt->bind_result($name, $age);
- /* fetch values */
- while ($stmt->fetch()) {
- echo "Name: $name Age: $age \n";
- }
- /* close statement */
- $stmt->close();
- }
- //添加记录
- if ($insertStmt = $mysqli->prepare("insert into user(name, age) values(?, 18)")) {
- /* bind parameters for markers */
- $insertStmt->bind_param("s", $insertName);
- /* execute query */
- $insertStmt->execute();
- echo $insertStmt->affected_rows . "\n";
- /* close statement */
- $insertStmt->close();
- }
- //更新记录
- if ($updateStmt = $mysqli->prepare("update user set age = 19 where name=?")) {
- /* bind parameters for markers */
- $updateStmt->bind_param("s", $insertName);
- /* execute query */
- $updateStmt->execute();
- echo $updateStmt->affected_rows . "\n";
- /* close statement */
- $updateStmt->close();
- }
- //删除记录
- $result = $mysqli->query("delete from user where age = 19");
- echo $result . "\n";
- $mysqli->close();//关闭连接
其结果与第一种相同。
其实mysqli提供了两种方式链接数据库,一种是面向对象的方式,就是如上的代码,另一种是面向过程的方式。可以参考MySQLi扩展功能概述学习。
第三种是使用PDO的方式去连接数据库,代码如下:
- <?php
- $host = 'localhost';
- $database = 'test';
- $username = 'root';
- $password = 'root';
- $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
- $insertName = 'testname';
- $pdo = new PDO("mysql:host=$host;dbname=$database", $username, $password);//创建一个pdo对象
- $pdo->exec("set names 'utf8'");
- $sql = "select * from user where name = ?";
- $stmt = $pdo->prepare($sql);
- $rs = $stmt->execute(array($selectName));
- if ($rs) {
- // PDO::FETCH_ASSOC 关联数组形式
- // PDO::FETCH_NUM 数字索引数组形式
- while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
- $name = $row['name'];
- $age = $row['age'];
- echo "Name: $name Age: $age \n";
- }
- }
- $oldAge = 18;
- $insert = $pdo->prepare('insert into user(name, age) values(:name, :age)');
- $insert->bindParam(':name', $insertName, PDO::PARAM_STR);
- $insert->bindParam(':age', $oldAge, PDO::PARAM_INT);
- $result = $insert->execute();
- echo $result . "\n";
- $newAge = 19;
- $update = $pdo->prepare('update user set age = ? where name = ?');
- $update->bindParam(1, $newAge, PDO::PARAM_INT);
- $update->bindParam(2, $insertName, PDO::PARAM_STR);
- $result = $update->execute();
- echo $result . "\n";
- $delete = $pdo->prepare('delete from user where age = ?');
- $result = $delete->execute(array($newAge));
- echo $result . "\n";
- $pdo = null;//关闭连接
其结果与第一种相同。
PHP的学习--连接MySQL的三种方式的更多相关文章
- php 链接mysql的三种方式对比
PHP连接Mysql的三种方式: 1.原生的连接方式 原生的连接方式是面向过程的写法 <?php $host = 'localhost'; $database = 'test'; $usern ...
- JDBC 创建连接对象的三种方式 、 properties文件的建立、编辑和信息获取
创建连接对象的三种方式 //第一种方式 Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/ ...
- JDBC 创建连接对象的三种方式 、 properties文件的建立、编辑和信息获取
创建连接对象的三种方式 //第一种方式 Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/ ...
- 使用zabbix监控mysql的三种方式
使用zabbix监控mysql的三种方式 1.只是安装agent 2.启用模板监控 3.启用自定义脚本的模板监控 zabbix中默认有mysql的监控模板.默认已经在zabbix2.2及以上的版本中. ...
- 【转】Spring学习---Bean配置的三种方式(XML、注解、Java类)介绍与对比
[原文]https://www.toutiao.com/i6594205115605844493/ Spring学习Bean配置的三种方式(XML.注解.Java类)介绍与对比 本文将详细介绍Spri ...
- AngularJs学习——实现数据绑定的三种方式
三种方式: 方式一:<h5>{{msg}}</h5> 此方式在页面刷新的时候会闪现{{}} 方式二:<h5 ng-bind="msg">< ...
- Spring学习(二)三种方式的依赖注入
1.前言 上一篇讲到第一个Spring项目的创建.以及bean的注入.当然.注入的方式一共有三种.本文将展开细说. 1.set注入:本质是通过set方法赋值 1.创建老师类和课程类 1.Course ...
- Java连接MySQL数据库三种方法
好久没有更新博客了!今天利用周目时学习了一下数据库mysql.介绍一下数据库的三种连接方式! 开发工具:Myeclipse MySQL5.6 MySQL连接驱动:mysql-connector-jav ...
- C# | VS2019连接MySQL的三种方法以及使用MySQL数据库教程
本文将介绍3种添加MySQL引用的方法,以及连接MySQL和使用MySQL的教程 前篇:Visual Studio 2019连接MySQL数据库详细教程 \[QAQ \] 第一种方法 下载 Mysql ...
随机推荐
- android wifi ANR问题分析总结
android wifi ANR问题分析总结 1 看看main进程阻塞在那里? 2 调用关系的函数阻塞在那里? 3 最终阻塞函数的阻塞前的log以及状态
- hdu 5661 Claris and XOR
Claris and XOR Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)To ...
- Android Studio 无法启动模拟器的一种可能是你装的是Ghost版的系统
我遇到的问题是,打开模拟器,进度条走到最后,突然出现了emulator error,然后模拟器就无法启动(不好意思当时没有截图).我是在Ghost版 win7系统下运行Android Studio 的 ...
- 转帖:Python应用性能分析指南
原文:A guide to analyzing Python performance While it’s not always the case that every Python program ...
- 可在广域网部署运行的QQ高仿版 -- GG叽叽V3.7,优化视频聊天、控制更多相关细节
在广域网中,由于网络的结构纷繁复杂.而且其实时状况又是千变万化的,所以,要使广域网中的视频聊天达到一个令人满意的效果,存在诸多挑战.这次发布的GG 3.7版本尝试在这一方向上做一些努力,据我自己测试, ...
- [.net 面向对象编程基础] (21) 委托
[.net 面向对象编程基础] (20) 委托 上节在讲到LINQ的匿名方法中说到了委托,不过比较简单,没了解清楚没关系,这节中会详细说明委托. 1. 什么是委托? 学习委托,我想说,学会了就感觉简 ...
- [php入门] 2、基础核心语法大纲
1 前言 最近在学PHP,上节主要总结了PHP开发环境搭建<[php入门] 1.从安装开发环境环境到(庄B)做个炫酷的登陆应用>.本节主要总结PHP的核心基础语法,基本以粗轮廓写,可以算作 ...
- GLFW初体验
GLFW - 很遗憾,没有找到FW的确切含义,Wiki上没有,GLFW主页也没有.猜测F表示for,W表示Window GLFW是干啥用的? 一个轻量级的,开源的,跨平台的library.支持Open ...
- 【译】用jQuery 处理XML--写在前面的话
用jQuery 处理XML--写在前面的话 用jQuery 处理XML-- DOM(文本对象模型)简介 用jQuery 处理XML--浏览器中的XML与JavaScript 用jQuery 处理XML ...
- C/C++中动态链接库的创建和调用
DLL 有助于共享数据和资源.多个应用程序可同时访问内存中单个DLL 副本的内容.DLL 是一个包含可由多个程序同时使用的代码和数据的库.下面为你介绍C/C++中动态链接库的创建和调用. 动态连接库的 ...