Hi!
I am developing a blackjack game with login system.
But I need to connect vb6 and mysql.
I can do for the ADO, but how do I for my application be used on other computers that do not have MySQL ODBC 3.51 Driver? Is there another way?

For example I have this code:

Code:
Set con = New ADODB.Connection

con.ConnectionString = "DRIVER={MySQL ODBC 3.51 Driver};SERVER= mysql.hostinger.pt;DATABASE=mydatabase;USER=my_user;PASSWORD=12345;OPTION=3;"
con.CursorLocation = adUseClient

con.Open
If noted my mysql database is hosted on a web server, and is not localhost.

And now I want my application to work on another computer, it is possible?

Appreciate Answers!
Thanks!