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 ...
随机推荐
- HTTP方法:GET对比POST
http://blog.csdn.net/zhenyu5211314/article/details/17067817
- LintCode 463 Sort Integer
这个是O(n2)的排序的总结 /* bubble sort */public static void sortIntegers(int[] A) { // Write your code here i ...
- document.write 摘抄
页面载入过程中用实时脚本创建页面内容,以及用延时脚本创建本窗口或新窗口的内容.该方法需要一个字符串参数,它是写到窗口或框架中的HTML内容.这些字符串参数可以是变量或值为字符串的表达式,写入的内容常常 ...
- PyCharm 3.0 发布,提供免费开源版本
PyCharm 发布最新的 3.0 版本,该版本新特性详见: http://www.jetbrains.com/pycharm/whatsnew/index.html 该版本最主要的是提供了免费开源的 ...
- xtrabackup_binlog_pos_innodb 和 xtrabackup_binlog_info
用过 xtrabackup 工具的 innobackupex 脚本备份数据的人可能会注意到,–apply-log 处理过的备份数据里有两个文件说明该备份数据对应的 binlog 的文件名和位置.但有时 ...
- Unity3D热更新全书-脚本(二) 两级分化
上篇明确了我们探讨的脚本是什么:是写在文本文件里面的代码,可以作为资源加载,取得字符串再执行. 可是为什么世界上会有那么多的脚本?而其使用方法完全看起来不一样呢?这是因为每种脚本都有自己的定位,在不同 ...
- appserv中php升级问题
当前版本为2.1,要升级到2.3.4 那么,首先到http://windows.php.net/downloads/releases/archives/ 找到2.3.4,需要注意的是,一般我们是非nt ...
- STSdb,最强纯C#开源NoSQL和虚拟文件系统 4.0 RC2 支持C/S架构
STSdb是什么 再来说明一下STSdb是什么:STSdb是C#写的开源嵌入式数据库和虚拟文件系统,支持实时索引,性能是同类产品的几倍到几十倍,访问官方网站. 温故知新 之前发了文章<STSdb ...
- Microsoft Dynamics CRM 2013 and 2011 Update Rollups and Service Packs
Microsoft Dynamics CRM 2013 BTW: RC stands for Release for Candidate, and RTM stands for Release ...
- linux下获取线程号
#include <sys/syscall.h> pid_t gettid() { return syscall(SYS_gettid); }