Blogger Information
Blog 55
fans 0
comment 1
visits 42195
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库连接及查询的基本步骤-2018年4月29日21点40分
旺小舞的博客
Original
825 people have browsed it

1,数据库连接的基本步骤:

列图:

4-23-1.png

数据库连接可以分为五步:

1,创建连接参数  

define('DB_HOST', '127.0.0.1');
define('DB_USER', 'root');
define('DB_PASS', 'root');
define('DB_NAME', 'php');
define('DB_CHAR', 'utf-8');

2,调用连接函数返回连接对象    

$db = mysqli_connect(DB_HOST,DB_USER,DB_PASS);

3,判断是否连接成功    

if(mysqli_connect_errno($db)){
	exit('连接失败'.mysqli_connect_error($db));
}
// echo '<h1>连接成功</h1>';

4,选择默认数据库    

mysqli_select_db($db,DB_NAME);

5,设置客户端默认字符编码集

mysqli_set_charset($db,DB_CHAR);
其中我们一般把连接函数另外放在一个php文档mysqli_config.php中,方便单独配置参数。用的时候直接引用代码:
require 'mysqli_config.php';

第二、三、四步可以直接代码简写为:

$db = mysqli_connect(DB_HOST,DB_USER,DB_PASS,DB_NAME)or die('连接失败'.mysqli_connect_error($db));
echo '<h1>连接成功</h1>';
mysqli_set_charset($db,DB_CHAR);


数据库查询的基本步骤:

1,连接数据库    2,编辑查询语句    3,执行查询语句    4,释放结果集    5,关闭数据库的连接

列图:

4-23-2.jpg

代码:

<?php 
//1,连接数据库
require '423-mysqli-connect.php';

//2,执行查询
$sql = 'SELECT name,salary FROM staff;';

//3,执行
if ($res=mysqli_query($db,$sql)) {
	while($row=mysqli_fetch_array($res,MYSQL_ASSOC)){
	// while($row=mysqli_fetch_array($res)){
	// while($row=mysqli_fetch_array($res,MYSQL_NUM)){
	// while($row=mysqli_fetch_object($res)){
		echo '<pre>';
		var_export($row);print '<hr>';
	}
}else{
	exit('查询失败'.mysqli_errno($db).':'.mysqli_connect_error($db));
}
//4,释放结果集(仅针对查询,读操作);
mysqli_free_result($res);

//5,关闭数据库的连接
mysqli_close($db);

运行实例 »

点击 "运行实例" 按钮查看在线实例



Correction status:Uncorrected

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