我想使用 JOOMLA 2.5 一次运行多个 SQL 更新查询。在我的代码下面:
require_once '../includes/framework.php';
$query = "UPDATE #__mytable SET myfield='value' where id=1; UPDATE #__mytable SET
myfield='value' where id=2; UPDATE #__mytable SET myfield='value' where id=3;";
$db = JFactory::getDbo();
$db->setQuery($query);
$db->query();
但它向我显示了一个语法错误。我尝试直接在 MYSQL 中进行测试,它可以工作。