Re: MySQL question using QT
Did you grant the user appropriate access rights for the database?
Re: MySQL question using QT
Yes I forgot to mention that.
//I log in to mysql server as root and exceuted these commands
mysql –u root mysql
mysql> use myql;
mysql> GRANT ALL ON *.* to root@’10.149.20.120’ IDENTIFIED BY ‘password’;
mysql> FLUSH PRIVILEGES;
Re: MySQL question using QT
Make sure you're not going through any NAT since you're using a private address as origin and the destination is in different subnet.
You are going through NAT and your IP address gets changed.
Re: MySQL question using QT
DO I NEED to have mysql installed in the client machine ????.
Re: MySQL question using QT
No MySQL does not need to be on the client I work with MySQL daily always remote servers I use qsqldatabase. Did you set this MySQL sever up ? Cause there may be an allow or deny configuration set on the server itself.