我在打開我的舊網站時遇到了一些問題。我的dataTable顯示:Mysql:執行命令拒絕用戶''@'localhost'的例程錯誤
DataTables warning: JSON data from server could not be parsed. This is caused by a JSON formatting error.
在那之後,我試圖調試我的腳本和MySQL中的錯誤:
Error occuered during query execution:
(<small>SELECT SQL_CALC_FOUND_ROWS ID,name,remark,avrusepmonth
, CONCAT('<input type=''checkbox''id=''cb' , ID ,''' name=''check[]''
value=''',ID,''' >','<label class=''lbcb'' for=''cb',
ID,'''><=update=</label>') as checkb
,monthavrage(ID,12) as latestavr , moq, leadtime
FROM test_media WHERE nowuse=1 and monthavrage(ID,12) > 0 ORDER BY name
desc, ID
LIMIT 0, 10</small>):
execute command denied to user 'jeinqa'@'localhost' for routine 'TestMediaControl.monthavrage'
然後我試圖google搜索execute command denied to user 'jeinqa'@'localhost' for routine 'TestMediaControl.monthavrage'
和一些網站說,我必須做一些GRANT
:
GRANT EXECUTE ON PROCEDURE TestMediaControl.monthavrage TO 'jeinqa'@'localhost'
但我得到:
#1370 - execute command denied to user 'jeinqa'@'localhost' for routine 'TestMediaControl.monthavrage'
你能告訴我該如何解決這個問題?