当前位置:首页 > Mysql教程 > 列表

mysql导入存储过程报错问题解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-28 11:46:10 浏览: 评论:0 

在mysql导入存储过程报错问题有很多种,今天我总结了两种报错提示与解决方法,希望此教程对各位朋友会有所帮助.

今天向mysql导入存储过程的时候报错,错误如下:you *might* want to use the less safe log_bin_trust_function_creators variable

处理这个问题,只需要进入mysql,在my.ini  里搜索[mysqld],直接在下边加一句话:

log-bin-trust-function-creators=1

或直接使用如下代码:mysql> SET GLOBAL log_bin_trust_function_creators = 1;

退出,重新导入存储过程,成功,如果你不是出现上面问题,可能碰到的是此类问题在导入存储过程时经常遇见下列DECLARE报错的问题:

Error Code : 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 '' at line 3
(0 ms taken)

具体原因可以查看mysql的官方手册,添加了delimiter后就不报了,代码如下:

  1. delimiter // 
  2. CREATE PROCEDURE p8()  
  3. BEGIN  
  4. DECLARE a INT;  
  5. DECLARE b INT;  
  6. SET a = 5;  
  7. SET b = 5;  //phpfensi.com

declare cur0 cursor for select pkid from T_VSM_SECPOLICY_USERGROUP; --这里为什么报错?

Tags: mysql存储过程 mysql导入报错

分享到: