I got this Database that is Online thats hosted through the Website and uses MySQL, and the Tables have some Data I like to Read From. Heres what I got (I used Jim's Data Read Thread)

vb Code:
  1. Public Sub testconnect()
  2.         Dim sqlconn As String = "Server=63.247.93.106;Database=viina_schoolbook;User=---; Password=---;"
  3.         Using Connection2 As New SqlConnection(sqlconn)
  4.             Using commanda As New SqlCommand("SELECT Keys From viina_schoolbook", Connection2)
  5.                 Connection2.Open()
  6.                 Using reader2 As SqlDataReader = commanda.ExecuteReader()
  7.                     While reader2.Read()
  8.                         MsgBox(reader2("keys"))
  9.                     End While
  10.                 End Using
  11.             End Using
  12.         End Using
  13.     End Sub

When I tried doing this as the SQL Connection String:

Driver={MySQL ODBC 3.51 Driver};Server=data.domain.com;Database=myDataBase;User=myUsername; Password=myPassword;Option=3;

I got an Error saying Driver is Invalid.