SQL 备份无法与 PHP 脚本一起使用

发布于 2024-12-06 19:00:11 字数 423 浏览 1 评论 0原文

我正在使用这篇博客文章中找到的脚本。

我想做的是将 SQL 代码输出到屏幕上,然后使用本地 Web 服务器中的 file_get_contents 获取 SQL 查询并将其 mysql_query 发送到我的本地数据库。

问题是当我这样做时它给了我一个错误:

您的 SQL 语法有错误;检查手册 与您的 MySQL 服务器版本相对应,以便使用正确的语法 靠近“插入...”

如果我从屏幕复制并粘贴 SQL 代码,它的执行效果非常好。

我知道这是一个很奇怪的请求,但如果有人可以帮助我找到问题,那就太好了。

I am using the script found at this blog post.

What I am trying to do is output the SQL Code onto the screen and then using file_get_contents from my local web server to get the SQL Query and mysql_query it to my local database.

The problem is when I do this it gives me an error:

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 'INSERT INTO...

If I copy and paste the SQL Code from the screen it's executed perfectly fine.

I know this is quite a weird request but if someone could help me find the problem it'll be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女净妖师 2024-12-13 19:00:11

好吧,我

    $file = file_get_contents("db-backup-1316832550-6f1ed002ab5595859014ebf0951522d9.sql");
foreach(explode(';', $file) as $value => $key)
{
if($key == ''){continue;}

echo $key;
mysql_query($key) or die(mysql_error());
}

当然使用了这个文件是示例之一,

分隔符 =“;” 似乎有问题

well i used this

    $file = file_get_contents("db-backup-1316832550-6f1ed002ab5595859014ebf0951522d9.sql");
foreach(explode(';', $file) as $value => $key)
{
if($key == ''){continue;}

echo $key;
mysql_query($key) or die(mysql_error());
}

of course the file is example one

there's seems to be a problem with the delimiter = ";"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文