eclipse dtp mysql 分隔符语句损坏。
全部。 我正在尝试使用 eclipse dtp 来处理 mySQL DB。以下是出现问题的代码:
drop function if exists checkTypedness;
DELIMITER //
create function checkTypedness(nom varchar(255))
returns int
reads sql data
begin
declare hits int;
set hits = 0;
[.....]
end
//
给出:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在 'DELIMITER //
create function checkTypedness(nom varchar(255)) 附近使用的正确语法 返回整数 ' 在第 1 行
已用时间:0 小时、0 分钟、0 秒、0 毫秒。
我真的希望不必使用 phpmyadmin 来构建数据库...... 干杯, 查尔斯.
all.
I'm trying to use the eclipse dtp to work on a mySQL DB. Here's the code that's giving an issue:
drop function if exists checkTypedness;
DELIMITER //
create function checkTypedness(nom varchar(255))
returns int
reads sql data
begin
declare hits int;
set hits = 0;
[.....]
end
//
gives:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER //
create function checkTypedness(nom varchar(255))
returns int
' at line 1
Elapsed Time: 0 hr, 0 min, 0 sec, 0 ms.
I was really hoping to not have to use phpmyadmin to build the database...
Cheers,
Charles.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的问题。似乎没有解决方案,因为:
我认为这是一个错误。
I have the same problem. It seems that there is no solution, because:
I think it's a bug.