欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  头条

php数据库操作--数据预处理、更新、删除

程序员文章站 2022-03-24 15:33:07
...
语句预处理:通俗的就是一次查询,多次执行,在我们后期的项目中会经常用到

创建:

//创建预处理

$createinto=$connent->prepare("insert into zh(name,age,email) values (?,?,?)");

sql语句,参数使用?代替为预留

//绑定  
$createinto->bind_param("sis",$name,$age,$email);

绑定参数 s为String类型 i为int类型

$name="zhanghao1";  
$age=1;  
$email="1234123123@qq.com";  
$createinto->execute();  
  
$name="zhanghao2";  
$age=2;  
$email="1234123123@qq.com";  
$createinto->execute();

执行语句;最后数据插入成功。(前提是连接到数据库并使用)

删除指定条目:

mysqli_query($connent,"delete from zh where name='zhanghao1'");

不加where条件删除整个表数据

更新指定条目:

mysqli_query($connent,"update zh set age=3 where name='zhanghao2'");

修改zhanghao2的年龄为3

全部数据库操作完之后要关闭数据库。

----完整代码-------

<?php  
/* 
 * 数据预处理  删除 更新数据 
 * 
 * To change the template for this generated file go to 
 * Window - Preferences - PHPeclipse - PHP - Code Templates 
 */  
  
 /** 
  * 预处理 简单化  创建一种方法 多处使用 
  */  
//先连接数据库  
$servername="localhost";  
$username="root";  
$userpassword="hao542161";  
$dbname = "testdb";  
$connent=new mysqli($servername,$username,$userpassword,$dbname);  
if($connent->connect_error){  
    die("连接失败: " . $connent->connect_error);  
}else{  
    echo "成功";  
  
}  
//创建预处理  
$createinto=$connent->prepare("insert into zh(name,age,email) values (?,?,?)");  
  
//绑定  
$createinto->bind_param("sis",$name,$age,$email);  
//多次执行  
$name="zhanghao1";  
$age=1;  
$email="1234123123@qq.com";  
$createinto->execute();  
  
$name="zhanghao2";  
$age=2;  
$email="1234123123@qq.com";  
$createinto->execute();  
echo "插入成功";  
  
//删除数据 删除表中 name为zhanghao1的数据  
mysqli_query($connent,"delete from zh where name='zhanghao1'");  
  
mysqli_query($connent,"update zh set age=3 where name='zhanghao2'");  
  
$connent->close();  
?>

我们可以发现其中where是判断条件的根本,根据他我们可以条件查询,条件删除和条件修改。