As per my question earlier today, I suspect I have an issue with unclosed connections that is blocking data from being injected into my MySQL database. Data is being allowed
Close all active connections:
dbDisconnectAll <- function(){ ile <- length(dbListConnections(MySQL()) ) lapply( dbListConnections(MySQL()), function(x) dbDisconnect(x) ) cat(sprintf("%s connection(s) closed.\n", ile)) }
executing: dbDisconnectAll()
dbDisconnectAll()