How to write the data frame in R into MySQL?
R
MySQL
dateTime host authId sessionId status action
It worked for me using the command below. Note that this will append the rows in yourtable to the database named yourTableInMySQL.
yourtable
yourTableInMySQL
library(RMySQL) dbWriteTable(con, "yourTableinMySQL", yourtable, append = TRUE)