Hi,
has anyone an idea, how I can get over this access denied error?
#1370 - execute command denied to user 'kulturbeutel-lei'@'localhost ' for routine 'kulturbeutel2. set_visits'
thanks
has anyone an idea, how I can get over this access denied error?
#1370 - execute command denied to user 'kulturbeutel-lei'@'localhost ' for routine 'kulturbeutel2. set_visits'
Code:
CREATE DEFINER=`kulturbeutel-lei`@`localhost` PROCEDURE set_visits( IN par_ip VARCHAR(40), IN par_type VARCHAR(10) ) BEGIN CALL count_timeout_ip(@num, par_ip, par_type); IF @num = 0 THEN CALL new_ip_timeout(par_ip, par_type); UPDATE `myphpgb_statistic` SET `visits` = `visits`+1 WHERE `date` = CURDATE(); END IF; END
Comment