gpt4 book ai didi

php - 如何在php中锁定mysql表

转载 作者:可可西里 更新时间:2023-11-01 07:02:16 26 4
gpt4 key购买 nike

如何在 php 中锁定 mysql 表?我目前有这段代码:

$db->query("LOCK TABLES tbl_othercharge WRITE");
for($x=0;$x<=500; $x++){
$id = get_max();
$db->query("INSERT INTO tbl_othercharge SET tblocID = '$id', assessmentID='lock1'");
}

$db->query("UNLOCK TABLES");

这里是 get_max() 函数,如果上面的脚本同时执行,显然会失败。

 <?php
function get_max(){
global $db;
$max = $db->get_var("SELECT MAX(tblocNumber) FROM tbl_othercharge");
if($max == null){
$max = 1;
}else if($max >= 1){
$max = $max + 1;
}
return 'OC'.$max;
}
?>

我正在尝试通过在 2 个浏览器上执行相同的脚本来测试是否仍然存在并发问题。上面的脚本插入了 400 多条记录而不是 999 条记录。在向表中插入内容时如何正确锁定表。

我想锁定表以防止发生这样的事情: enter image description here

如您所见,前缀为“OC”的字段应该有一个等于自增主键的数字。

最佳答案

唯一可靠的解决方案是使用虚拟值进行插入,获取最后的插入 ID,并将行更新为正确的值。

mysql_query("INSERT INTO table (field) VALUES (dummy);");
$id = mysql_last_insert_id();
mysql_query("UPDATE table SET field='OC{$id}' WHERE id={$id} LIMIT 1;");

关于php - 如何在php中锁定mysql表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8576125/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com