django - 无法在原始 sql (MySQL) 中设置定界符
django - Unable to set delimiter in raw sql (MySQL)
我想通过迁移定义一个存储过程。在此之前我试图设置定界符但得到 django.db.utils.ProgrammingError: (1064, "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 $$' at line 1")
代码:
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('...', '...'),
]
operations = [
migrations.RunSQL("DELIMITER $$"),
# ...
migrations.RunSQL("DELIMITER ;"),
]
我发现 information 关于 DELIMITER
是客户端关键字,特定工具可能不支持它,但在 django 中正确的方法是什么?
不需要设置分隔符。我刚刚删除了这些行并且它起作用了。
(查看 post 条评论)
我想通过迁移定义一个存储过程。在此之前我试图设置定界符但得到 django.db.utils.ProgrammingError: (1064, "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 $$' at line 1")
代码:
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('...', '...'),
]
operations = [
migrations.RunSQL("DELIMITER $$"),
# ...
migrations.RunSQL("DELIMITER ;"),
]
我发现 information 关于 DELIMITER
是客户端关键字,特定工具可能不支持它,但在 django 中正确的方法是什么?
不需要设置分隔符。我刚刚删除了这些行并且它起作用了。 (查看 post 条评论)