I know near nothing about VBA, but I'm trying to modify an application to connect to a MySQL Database.
The following code produces a Compile error at rstProjets.Open
and I can't seem to find why.
Public mysqlConn As ADODB.Connection
Private Sub cmdUpdate_Click()
Dim rstProjets As ADODB.Recordset
ConnectMySQL
Set rstProjets = rstProjets.Open("SELECT * FROM subventions LIMIT 5", mysqlConn)
With rstProjets
If Not .EOF And Not .BOF Then
.MoveFirst
Do While Not .EOF
MsgBox "Subventions:" & rstProjets![pin], , "Subvention ajoutée"
.MoveNext
Loop
Else
MsgBox "Aucune données à mettre à jour !", , "LVMB"
End If
.Close
End With
mysqlConn.Close
End Sub
Private Sub ConnectMySQL()
Set mysqlConn = New ADODB.Connection
mysqlConn.Open "DRIVER={MySQL ODBC 5.3 Unicode Driver};" & _
"SERVER=127.0.0.1;" & _
"DATABASE=database;" & _
"USER=root;" & _
"PASSWORD=;" & _
"Option=0"
End Sub
Set your rstProjets object variable to a
New ADODB.Recordset
, and then call its.Open
method.