php中怎么同时执行两个不同的insert语句

WBOY
Release: 2016-06-13 10:28:00
Original
1659 people have browsed it

php中如何同时执行两个不同的insert语句
class SqlTool{
public $link;
public $hostName="localhost";
public $userName="root";
public $userPwd="";
public $db_Name="qlzx";
  public function execute_dml($sql){
$res=$this->link->query($sql) or die($this->link->error);
if(!$res) return 0;
else{
if($this->link->affected_rows>0) return 1;
else return 2;
}
}
}
$sqlTool=new SqlTool();

$sql="insert into customerinfo values(null,'{$ci->getEmail()}','{$ci->getPwd()}',now())";
$sql.="insert into customerdetailinfo values(last_insert_id(),'{$cdi->getName()}','{$cdi->getTelphone
()}','{$cdi->getMovePhone()}','{$cdi->getAddress()}')";

$sqlTool->execute_dml($sql);

?>

这样执行语句能否成功?

------解决方案--------------------
不能,至少你SQL语句之间还应该有个分号来隔开。
我更好奇的是为什么你会有这么奇怪的需求,分开执行不仅方便排错,而且安全
------解决方案--------------------
用事务
------解决方案--------------------
分开写,费不了多少事。
last_insert_id() 这么做完全没必要,ID是自增的,那么就不需要你去指定。任何数据库的设计者都会考虑到自增键可能出现的任何问题,并在开发阶段就能解决。
------解决方案--------------------
不能!
一次只能执行一条 SQL 指令,这是 php 内置的 防范SQL攻击 的措施,不要试图突破他
分开来执行也是一样的,只要数据库连接没断开过


------解决方案--------------------
用事务处理。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template