How to write the data frame in R into MySQL?
R
MySQL
dateTime host authId sessionId status action
Use the dbWriteTable function. It looks like this :
dbWriteTable(connection, value = data.frame, name = "MyTable", append = TRUE )
The function is well documented.
P.S Also look at: RMySQL dbWriteTable with field.types