博客列表 >使用预处理技术实现更新与删除操作-2018年5月1日21:26:39

使用预处理技术实现更新与删除操作-2018年5月1日21:26:39

inhylei
inhylei原创
2018年05月01日 21:36:28729浏览

预处理实现更新数据

$sql = "UPDATE staff SET name=?,salary=? WHERE staff_id=?;";

$stmt = mysqli_stmt_init($db);

if (mysqli_stmt_prepare($stmt,$sql)){
    mysqli_stmt_bind_param($stmt,'sii',$name,$salary,$staff_id);
    $name = 'xiaolongnn';$salary = 5600;$staff_id=15;
    if(mysqli_stmt_execute($stmt)){
        if (mysqli_stmt_affected_rows($stmt)>0){
            echo '更新成功,记录:' . mysqli_stmt_affected_rows($stmt);
        }else{
            echo '没有更新记录';
        }

    }else{
        exit(mysqli_stmt_errno($stmt) . ':' . mysqli_stmt_error($stmt));

    }

}else{
    exit(mysqli_stmt_errno($stmt) . ':' . mysqli_stmt_error($stmt));

}
mysqli_stmt_close($stmt);
mysqli_close($db);

预处理实现删除数据

require 'mysqli-connect.php';
$sql = "DELETE FROM staff WHERE staff_id=?";

$stmt = mysqli_stmt_init($db);

if (mysqli_stmt_prepare($stmt,$sql)){
    mysqli_stmt_bind_param($stmt,'i',$staff_id);
    $staff_id = 19;
    if(mysqli_stmt_execute($stmt)){
        if (mysqli_stmt_affected_rows($stmt)>0){
            echo '删除成功:' . mysqli_stmt_affected_rows($stmt);
        }else{
            echo '删除失败';
        }

    }else{
        exit(mysqli_stmt_errno($stmt) . ':' . mysqli_stmt_error($stmt));

    }

}else{
    exit(mysqli_stmt_errno($stmt) . ':' . mysqli_stmt_error($stmt));

}
mysqli_stmt_close($stmt);
mysqli_close($db);

总结

预处理操作:使用mysqli_stmt_init()创建stmt对象

mysqli_stmt_prepare检测stmt对象

mysqli_stmt_bind_param()邦定stmt对象

执行stmt对象mysqli_stmt_excute()

mysqli_stmt_close($stmt);关闭预处理对象
mysqli_close($db);不要忘记关闭数据库


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议