Blogger Information
Blog 30
fans 2
comment 3
visits 20144
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库连接的基本步骤——2018年4月23日
jackallen的博客
Original
1163 people have browsed it

1、数据库连接的基本步骤

//1. 创建连接参数
创建连接参数: 因为连接参数不会经常变化,所以推荐使用常量
define ('DB_HOST', 'localhost');
define ('DB_USER', 'root');
define ('DB_PASS', 'root');
define ('DB_NAME', 'php');
define ('DB_CHAR', 'utf8');

//2. 调用连接函数,成功则返回mysqli对象,失败返回false
$db = @mysqli_connect(DB_HOST, DB_USER, DB_PASS);
//var_dump($db);die();
//3. 测试连接是否成功?
//连接失败一定会返回错误编号,可以根据编号判断,也可用 $db是否为false进行判断
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

define ('DB_HOST', 'localhost');
define ('DB_USER', 'root');
define ('DB_PASS', 'root');
define ('DB_NAME', 'php');
define ('DB_CHAR', 'utf8');
//导入数据库连接参数
require 'mysqli_config.php';

运行实例 »

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

数据库查询的基本步骤

<?php
/**
 * 执行查询
 * 1. 数据库的查询:不仅仅包括查询,还包括新增,更新与删除操作,即读写操作,或者访问操作
 * 2. 涉及的3个函数:
 * 2-1. mysqli_query($db, $sql):执行SQL语句
 * 2-2. mysqli_errno($db):返回最后一次函数执行的错误代码
 * 2-3. mysqli_error($db):返回最后一次函数执行的错误信息
 * 2-4. mysqli_close($db):关闭当前的数据连接
 * 3. 查询步骤:
 *  3-1.连接数据库
 *  3-2.执行查询
 *  3-3.关闭数据库连接
 */

//1.连接数据库,require 不是函数,后面不用加括号
require 'mysqli_connect.php';


//2.执行查询
if($res = mysqli_query($db, "SELECT name,salary FROM staff")) {
    while($row = mysqli_fetch_assoc($res)) {
        var_export($row);
        print '<hr>';
    }
} else {
    exit('查询失败'.mysqli_errno($db).':'.mysqli_error($db));
}

//释放结果集(仅针对select)
mysqli_free_result($res);

//4.关闭数据库连接
mysqli_close($db);

运行实例 »

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


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