Hi!
Is it possible to connect to a MySQL database from a VB.net application?
I tried this:
Dim Conn As System.Data.SqlClient.SqlConnection
Conn = New System.Data.SqlClient.SqlConnection( _
"Driver={MySQL ODBC 3.51 Driver}; " & _
"Server=***; " & _
"Database=***; " & _
"User ID=***;" & _
"Password=***;")
But that does not seem to work. The emulator gets a error, that the
option driver is unknown.
Alex.