我正在尝试使用 mysql 命令行客户端来执行一个过程。该过程helloworld()
在 mysql 查询浏览器中执行良好。
在查询浏览器中选择的数据库方案
DELIMITER $$
DROP PROCEDURE IF EXISTS helloworld$$
CREATE PROCEDURE helloworld()
BEGIN
SELECT 'helloworld';
END$$
当我call helloworld()
返回helloworld时。我将程序helloworld.sql
保存在桌面的 SQL SCRIPT FILE ANSI .sql 中
现在我正在尝试从 cmd 客户端访问保存在桌面中的 .sql 文件,并提供成功连接的密码
现在当我输入
ENTER PASSWORD:******
Your Mysql connection id is 43
Server Vesion 5.5.24
mysql> SOURCE helloworld.sql
ERROR failed to open file helloworld.sql Error 2
我应该给出文件的路径吗?