Connect to a mySQL Local server?

[quote=319689:@Jukka Leino]I think it’s
bind-address=127.0.0.1
and that you should comment out with “#”
bind-address allows connection only from localhost by default.

And make user with:
GRANT ALL PRIVILEGES ON yourdb.* TO ‘youruser’@‘192.168.0.%’;
so it allows connection from your local network to yourdb database with youruser…[/quote]
I do that.

I made a new user, different that root assign the privileges
But Still without success even playing with bind-address and skip networking hashing it.

Without success, I was about to give up, at then Playing with WEBADMIN I found this:

MySQL Database Server menu -> MySQL Server Configuration ->MySQL Listening Address And check this option instead of “Any”
And I got how its option are activated, As Jukka said Only need to assign permissions to certain IP, but don’t mess with “#skip-networking

I’ve read in other forums that this option are only for Localhost access, not remote.

So then Run my Xojo and says Ok, I can access to my database!!!

Regards and thanks all