我可以从命令行运行我的ex1.sql
脚本,但是在 geany 中会弹出以下错误:
./geany_run_script.sh: 5: ./geany_run_script.sh: ./ex1: not found
有人有想法吗?
我可以从命令行运行我的ex1.sql
脚本,但是在 geany 中会弹出以下错误:
./geany_run_script.sh: 5: ./geany_run_script.sh: ./ex1: not found
有人有想法吗?
Geany 不能直接执行 sql。您必须从构建菜单中配置构建命令来执行此操作,例如psql -f %f
使用 psql 客户端运行 sql 脚本。
为了我的工作,我以这种方式修改了 filetypes.sql:
[build-menu]
EX_00_LB=_Exécuter
EX_00_CM=/opt/lampp/bin/mysql -u root < %f
EX_00_WD=
/opt/lampp/bin/mysql
= 是在我的计算机上安装 mysql
< %f
= 允许执行 sql 不要忘记在代码中指定要使用的 whitch DB,因此请 use Mydatabase;
在顶部添加一行。