do u guys know how to connect vb6 to mysql remotely?
do you have a link of tutorial to that question?
thanks
do you have a link of tutorial to that question?
thanks
| Daniel15 wrote: |
| It's a bad idea to connect remotely like that, because the password and all the data is sent as plain text (not encrypted). It would also be really slow, which would make your VB6 app very slow. Also, I think FriHost might firewall the MySQL ports so that only the server can access it.
If you want to access data on your FriHost account, my suggestion would be to have a PHP script that grabs the data from the database, and returns it. Your VB app could then get the data from the URL of the PHP script. What data are you getting from the database, exactly? |