Forums | Webyog
Tools to manage and monitor MySQL databases
forums › forums › SQLyog › Using SQLyog › Grant Privileges
correct syntax for GRANT is
GRANT ALL on newtest.* to 'basis'@'somehost' …
(note how to use quotes).
with 'basis'@'localhost' the client program runs on the same computer as the server.
'%' is a wildcard and means 'any host'.