Blogger Information
Blog 26
fans 0
comment 0
visits 16528
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库的连接和查询指令
瘦不下来的博客
Original
608 people have browsed it

使用PHP进行数据库连接:

实例

<?php
/**
 * 配置数据库连接参数
 */

define ('DB_HOST', 'localhost');
define ('DB_USER', 'root');
define ('DB_PASS', 'root');
define ('DB_NAME', 'php');
define ('DB_CHAR', 'utf8');

运行实例 »

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

数据库查询:

实例

<?php
/**
 * 配置数据库连接参数
 */

define ('DB_HOST', 'localhost');
define ('DB_USER', 'root');
define ('DB_PASS', 'root');
define ('DB_NAME', 'php');
define ('DB_CHAR', 'utf8');

$sql = "SELECT name,salary FROM staff";
//$sql = "SELECT name AS 姓名,salary AS 工资 FROM staff WHERE age>90";

//3.执行查询:成功会返回结果集对象,失败返回false
$result = mysqli_query($db, $sql);
//var_dump($result);die();
//4.检测结果
//如果结果集存在
if (false != $result) { //这是写只是语义性更强
    //如果结果集中存在记录,至少有一条
//    if (mysqli_num_rows($result) > 0) {
    //mysqli_affected_rows($db)也可以完成同样的检测工作,注意参数是连接对象$db,不是结果集对象
    if (mysqli_affected_rows($db) > 0) {
//        echo '共计:'.mysqli_num_rows($result).'条记录<br>';
        echo '共计:'.mysqli_affected_rows($db).'条记录~~<br>';
   
        //5-4:以对象的方式
        while($row = mysqli_fetch_object($result)){
//            var_export($row);//以字符串方式表示查询结查
            //如果是对象,可以用指向符来访问
            echo $row->name.'--'.$row->salary;
            echo '<hr>';

            //以变量方式表示,表示的内容更加完整丰富
//            var_dump($row);
        }
    } else {
        echo '没有符合条件的记录';
    }
    //查询失败的处理方式
} else {
    //必须要用exit()或die()终止脚本执行,否则后面的语句还会执行并会报错
    exit('查询失败'.mysqli_errno($db).':'.mysqli_error($db));
}

//5.释放结果集(仅针对select)
mysqli_free_result($result);

//6.关闭数据库连接
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