本文介绍了SQL脚本可在MySQL中运行,但无法运行mysqli-> query();为什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的SQL脚本在MySQL Workbench中成功运行.
My SQL script works successfully in MySQL Workbench.
以下给出了错误:
$link = mysqli_connect(***********);
$result = $link->query($sql);
SQL脚本执行一些操作,包括:
The SQL script performs some actions including:
- 创建临时表
- 截断表
- 放置表格
- 插入
- 选择
错误是:
-- 1.1 Creating temporary table for categories
drop table if exists exp_categories; -- just in case
create temporary table exp_categories
(
ID bigint not null,
Categories text not null,
PRIMARY KEY (ID)
) DEFAULT CHARSET=utf8;
-- 1.2 Inserting data...
-- few other statements here
-- last statement is SELECT
mysqli是否有我遇到的限制?
Does mysqli have limitations that I am encountering?
推荐答案
尝试使用multi_query()
$link->multi_query($sql)
与您连接的用户必须在数据库中具有必要的特权或全局特权.
And the user you connect with have to have necessary privileges in your db or global privileges.
这篇关于SQL脚本可在MySQL中运行,但无法运行mysqli-> query();为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!