source 命令无法使用?
程序员文章站
2022-05-24 09:56:01
...
无法导入???
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'source D:\Server\three\public\export.sql' at line 1
function ImportDB($dbh) {
$sql = 'source '.realpath('export.sql');
try {
$stmt = $dbh->prepare($sql);
var_dump($stmt->execute());
var_dump($stmt->errorInfo());
}
catch (PDOException $e) {
print $e->getMessage();
}
}
注:导入包没问题:
回复内容:
无法导入???
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'source D:\Server\three\public\export.sql' at line 1
function ImportDB($dbh) {
$sql = 'source '.realpath('export.sql');
try {
$stmt = $dbh->prepare($sql);
var_dump($stmt->execute());
var_dump($stmt->errorInfo());
}
catch (PDOException $e) {
print $e->getMessage();
}
}
注:导入包没问题:
execute()
只能执行SQL语句,而SOURCE
虽然也能在mysqlclient
中执行,但是并不是sql语句,所以d会执行失败,建议直接用php的exec
命令进行执行
导入前的先use一下哪个库吧,我用cmd都需要把路径的斜线换成反斜线要不会报错,希望对你有帮助
上一篇: php 资料上传类
推荐阅读
-
Android中使用SQLite3 命令行查看内嵌数据库的方法
-
LNMP下使用命令行导出导入MySQL数据库的方法
-
Mysql导入导出工具Mysqldump和Source命令用法详解
-
java在linux系统下开机启动无法使用sudo命令的原因及解决办法
-
java使用命令行打包JAR
-
MySQL SHOW 命令的使用介绍
-
MySQL数据库恢复(使用mysqlbinlog命令)
-
详解 Android中Libgdx使用ShapeRenderer自定义Actor解决无法接收到Touch事件的问题
-
Dispatch Source Timer的使用及注意事项介绍
-
LNMP下使用命令行导出导入MySQL数据库的方法