Hiya,
I cant give you a total solution, but I can give you some options to look at:
http://www.able-consulting.com/dotn...TNativeProvider
Imports EID.MySqlClient
Dim oMySqlConn As MySqlConnection = New MySqlConnection()
oMySqlConn.ConnectionString = "Data Source=localhost;" & _
"Database=mySQLDatabase;" & _
"User ID=myUsername;" & _
"Password=myPassword;" & _
"Command Logging=false"
oMySqlConn.Open()
For more information, see:
http://www.einfodesigns.com/dbProvider_info.aspx
Im fairly certain you can just replace 'localhost' with your ip address. Another example i've got is:
ODBC .NET Data Provider connection string, connecting to the USERMANPC MySQL Server with IP Address 10.8.1.30:
“DRIVER={MySQL};SERVER=10.8.1.30;UID=UserMan;PWD=userman;DATABASE=UserMan”
or
“DRIVER={MySQL};SERVER=10.8.1.30;UID=UserMan;PWD=userman;Initial Catalog=UserMan”
If the names service is set up OK you should also be able to use:
“DRIVER={MySQL};SERVER=USERMANPC;UID=UserMan;PWD=userman;DATABASE=UserMan”
I wont vouch for the accuracy or correctness, though its another thing to look at.
Chris