I'm passing a simple data.frame object to a MySql connection.
The problem is that dbWriteTable()
call return this error message:
Error in .local(conn, statement, ...) :
could not run statement: Unknown column 'row_names' in 'field list'
I tried:
row.names = FALSE
as a parameter to my dbWriteTable()
and
rownames(df) <- NULL
neither of these worked.