>  기사  >  백엔드 개발  >  PHP PDO事务提交mysql语句

PHP PDO事务提交mysql语句

WBOY
WBOY원래의
2016-06-23 14:39:02890검색

$db = new PDO ( 'mysql:host=' . $cfg ['hostanme'] . ';dbname=' . $cfg ['dbname'], $cfg ['username'], $cfg ['password'] );		$db->exec ( "set character_set_client = utf8" );		$db->exec ( "SET character_set_results =utf8" );		$db->exec ( "SET character_set_connection = utf8" );				$db->query ( "BEGIN" ); // 事务开始				$calories ="sa阿萨德";		$sth = $db->prepare(' INSERT INTO `test_user`  values ( null,1, :calories);');		$sth->execute(array(':calories' => $calories ));				$sths = $db->prepare(' INSERT INTO `test_users`  values ( null,1, :calories);');		$sths->execute(array(':calories' => $calories )); //故意写错的				$lastid = $db->lastInsertId();						$sd = $sth->rowCount();


想问一下,通过这种方式处理事务,是不是每次只能执行一条sql,然后在判断? 如果我SQL语句很多,例如10条以上,那不是要写10多个,判断10多次? 有没有一次可以执行多条sql的事务? 另外,mysql 中,存储过程怎么写事务?PHP如何调用?


回复讨论(解决方案)

DROP PROCEDURE IF EXISTS pro_rep_shadow_rs;create procedure pro_rep_shadow_rs(out rtn int)   begin       -- 如果出现异常,会自动处理并rollback    declare exit handler for  sqlexception ROLLBACK ;     		           -- 启动事务       start transaction;       insert into test_user values(NULL,1,'啊是大三的');		insert into test_user VALUES(NULL,23,'sdsd',ss); --故意写错的           -- 运行没有异常,提交事务       commit;       -- 设置返回值为1      set rtn=1;   end;   

最终还是使用存储过程来执行事务,要方便的多

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.