MySQL remote connection problem
Posted: Mon Nov 30, 2015 5:32 pm
I have read everything about making a remote connection to a MySQL database but it just doesn't work.
I wrote a small Xbase++ program that uses the ODBCDBE to connect to the BULLETINBOARD database which runs this forum. It works fine if I run it on the server but not from a computer on the same subnet.
I used the GRANT PRIVILEGES command to give myself privileges but it will not connect from my workstation.
Also, why can't I connect using my "root" user?
Any ideas?
I wrote a small Xbase++ program that uses the ODBCDBE to connect to the BULLETINBOARD database which runs this forum. It works fine if I run it on the server but not from a computer on the same subnet.
I used the GRANT PRIVILEGES command to give myself privileges but it will not connect from my workstation.
Code: Select all
mysql> grant all privileges on *.* TO 'rdonnay'@'%' identified by '<password>';
mysql> flush privileges;
Any ideas?