如何通过运行批处理文件启动XAMPP MySQL?

时间:2016-09-10 16:13:42

标签: mysql batch-file xampp

我在我的批处理文件中尝试了以下代码,但它无法正常工作

mysql\bin\mysqld.exe --defaults-file=mysql\bin\my.ini --standalone --console

1 个答案:

答案 0 :(得分:1)

您是否忘记指定绝对路径?这对我来说很好。

set root=c:\xampp\
%root%mysql\bin\mysqld.exe --defaults-file=%root%mysql\bin\my.ini --standalone --console
pause

如果不是,你调用文件的错误消息是什么