我正在尝试配置Sublime文本来进行MySQL构建,以下是脚本:
MyInteger int5 = new MyInteger(56);
System.out.println(MyInteger.isEven(int5));
实际上,它适用于文件{
"cmd": ["mysql", "--default-character-set=utf8", "-uuser", "-ppwd", "-hlocalhost", "-v", "db_mine", "-e source main.sql"],
"selector": "source.sql"
}
,如脚本中所示。显然应该改变,我看到人们在那里使用$ file。
问题是在这里(Windows 7)它无法正常工作。
如果我将其更改为main.sql
,那么我会得到:
$file
有什么建议吗?
答案 0 :(得分:1)
以下适用于macOS:
{
"cmd": ["/usr/local/mysql/bin/mysql", "-u", "root", "-e", "source $file", "-t"],
"selector": "source.sql"
}