私の古いWebサイトを開いているときに何か問題がありました。私の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'
その後、私は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'
これを解決するにはどうすればよいですか?