I'm trying to connect to MySQL Workbench using RMySQL:
con <- dbConnect(dbDriver("MySQL"), host="hostName", port = number, user = "user", password = "password", dbname="dbname")
and I got an error:
Error in .local(drv, ...) : Failed to connect to database: Error: Plugin mysql_clear_password could not be loaded: The specified module could not be found.
I couldn't find anything about that error in RMySQL and I don't know how to solve that problem. Anyone could help?