mysql host’s wildcards
To add a wildcard to a host in my case i had to add user with following command
create user ‘a’@'80.90.100.%’ identified by ‘b’;
this is mysql 5.0
To add a wildcard to a host in my case i had to add user with following command
create user ‘a’@'80.90.100.%’ identified by ‘b’;
this is mysql 5.0
Nice! More information about this feature is available in the MySQL documentation at http://dev.mysql.com/doc/refman/4.1/en/connection-access.html
For mysql 5.0 http://dev.mysql.com/doc/refman/5.0/en/connection-access.html