Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating Stored Procedure: Access denied

Status
Not open for further replies.

solepixel

Programmer
May 30, 2007
111
0
0
US
I've never created a stored procedure before, ever, and it appears it's the only safe way to pass variables to MySQL in ASP.NET. So i'm using SQLYog which pretty much writes most the Create Procedure statement for me, however, when I execute it, I get: Access Denied - Error Code: 1044

I have full access to this database, and even tried logging in as the root user yet still get the same error. Is there something I must do in MySQL configuration to allow for this? I've looked through the permissions and there's nothing else I can get granted access to, I have it all. Thanks.
 
Code:
DELIMITER $$

DROP PROCEDURE IF EXISTS `alatelco`.`getContent`$$

CREATE PROCEDURE `alatelco`.`getContent` ()
BEGIN
Then my select statement or whatever
Code:
SELECT * FROM content;
Code:
END$$

DELIMITER ;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top