mysql樹立自界說函數的成績。本站提示廣大學習愛好者:(mysql樹立自界說函數的成績)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql樹立自界說函數的成績正文
創立函數時成績立時湧現:
ERROR 1418 (HY000): This routine has none of DETERMINISTIC, NO SQL,
or READS SQL DATA in its declaration and binary logging is enabled
(you *might* want to use the less safe log_bin_trust_routine_creators
variable)
在mysql在線文檔中找到處理計劃,網址為:
http://dev.mysql.com/doc/refman/5.1/zh/stored-procedures.html#create-procedure
只須要將log_bin_trust_routine_creators 設置為 1 便可,處理辦法
在my.ini的[mysqld]下加上log-bin-trust-function-creators=1
願望列位在應用進程中碰著成績少走彎路。