Mysqli 不允许多个查询?

Mysqli doesn#39;t allow multiple queries?(Mysqli 不允许多个查询?)
本文介绍了Mysqli 不允许多个查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在 PHP 中运行一个脚本,该脚本使用循环为 MySQL 创建一个字符串查询.

I am running a script in PHP that uisng a loop creates a string query for MySQL.

执行脚本后出现以下错误:

After executing the script I get the following error:

您的 SQL 语法有错误;请查看手册对应于您的 MySQL 服务器版本以使用正确的语法'UPDATE BANNERS SET pos=1 WHERE BID=5; 附近更新横幅集pos=2 WHERE BID=1' 在第 2 行"

"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE BANNERS SET pos=1 WHERE BID=5; UPDATE BANNERS SET pos=2 WHERE BID=1' at line 2"

在错误之后我回显查询,它看起来像这样:

right after the error I echo the query and it looks like this:

UPDATE BANNERS SET pos=0 WHERE BID=6;
UPDATE BANNERS SET pos=1 WHERE BID=5;
UPDATE BANNERS SET pos=2 WHERE BID=1;

当我将其复制并粘贴到 phpmyadmin 中时,它显然可以毫无问题地执行.

When I copy and paste it into phpmyadmin, it obviously gets executed without any problem.

有什么想法吗?

这是PHP代码:

有一个看起来像这样的数组:

There is an array that looks like this:

$order[0] = 'tr_6';
$order[1] = 'tr_5';
$order[2] = 'tr_1';

$query = "";

foreach($order as $pos => $value){
   $idvalue = str_replace('tr_','',$value);
   $query .= "UPDATE BANNERS  SET pos=$pos WHERE BID=$idvalue;
";
}

mysqli_query($connection,$query) or die(mysqli_error($connection)."<br/>$query");

谢谢!

推荐答案

mysqli 允许使用 mysqli_multiple_query 函数进行多次查询,如下所示:

mysqli allow multiple queries with mysqli_multiple_query function like this:

$query  = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

/* execute multi query */
if (mysqli_multi_query($link, $query)) {
    do {
        /* store first result set */
        if ($result = mysqli_store_result($link)) {
            while ($row = mysqli_fetch_row($result)) {
                printf("%s
", $row[0]);
            }
            mysqli_free_result($result);
        }
        /* print divider */
        if (mysqli_more_results($link)) {
            printf("-----------------
");
        }
    } while (mysqli_next_result($link));
}

请注意,每次查询后都需要使用分号.

note that you need to use semicolon after each query.

这篇关于Mysqli 不允许多个查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Warning: mysqli_query() expects at least 2 parameters, 1 given. What?(警告:mysqli_query() 需要至少 2 个参数,1 个给定.什么?)
INSERT query produces quot;Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean givenquot;(INSERT 查询产生“警告:mysqli_num_rows() 期望参数 1 为 mysqli_result,给出布尔值;)
prepared statements - are they necessary(准备好的陈述 - 它们是否必要)
Do I need to escape my variables if I use MySQLi prepared statements?(如果我使用 MySQLi 准备好的语句,是否需要转义我的变量?)
Properly Escaping with MySQLI | query over prepared statements(使用 MySQLI 正确转义 |查询准备好的语句)
Is it possible to use mysqli_fetch_object with a prepared statement(是否可以将 mysqli_fetch_object 与准备好的语句一起使用)