I'm trying to connect to a MySql db on a remote machine via R, I've tried RODBC and it fails, I've tried RJDBC and it fails :
library(RJDBC)
msDriver <- JDBC(driverClass="com.mysql.jdbc.Driver", classPath=".../mysql-connector-java-5.1.13-bin.jar")
msCon <- dbConnect(msDriver, "jdbc:mysql://[IP]:5433/[SchemaName]",uid="johnDoe",pwd="word")
The message I get is :
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
I am able to connect to other DBs but MySQL seems to have different problems, has any1 succeded in doing this from R?