Amigos, tenho uma conexão odbc com um servidor mysql que funciona corretamente. Utilizo a seguinte string:
Private sServer As String
Private sBase As String
Private sUser As String
Private sPass As String
Private sPort As Integer
Private sOption As Long
Public Function ConnectToMySQL()
With db
.CursorLocation = adUseClient
.ConnectionString = "Driver={mysql ODBC 3.51 Driver}; Server=" & sServer & "; Database=" & sBase & "; uid=" & sUser & "; pwd=" & sPass & ";option=" & sOption & ";port=" & sPort & ";Protocol=TCP"
.Open
End With
End Function
Para funcionar, precisei baixar o driver ODBC 3.51
Como ficaria esta conexão em modo OLEDB? Que arquivo preciso baixar para que ela funcione corretamente?
Qual a melhor conexão? ODBC ou OLEDB? Porque?