MySQL community server problems
Apps I have distributed don’t work under Windows10. They hang just stating there is a problem.
What I dit to find out what the cause: I builded an OSX version > No problem. Than I made an new Winows (32bit) App from scratch and added functionality, tested the version and added a new one.
It appears the following code is the cause:
Dim DB As New MySQLCommunityServer
If DB.Connect then
MsgBox “Connected”
Else
DB = New MySQLCommunityServer
DB.Host = DB_path
DB.port = DB_port
DB.DatabaseName = DB_name
DB.UserName = DB_user_name
DB.Password = DB_user_pw
End IF
If DB.Connect then
MsgBox “Connected”
Else
MsgBox “Geen dataconnectie!”
End If