Re: Error Accessing Routines in 32 bits MySql Server from 64 bits MySql Connector
Posted by: Gabriela Martinez Sanchez
Date: February 04, 2015 09:52AM

hi Kleber,

There is no problem about the versions you're using (32 or 64 bits). since all are compatible. Have you checked that the user you put in your connection string has the required permissions to execute the queries you're using?

You can check the permissions with the following instruction:

SHOW GRANTS FOR CURRENT_USER();

For example if you want to add the permission to execute routines you could do:

grant execute on db.* to user@localhost;

Hope this helps.

Regards,

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.