Displaying 1 result from an estimated 1 matches for "follolw".
Did you mean:
follow
2008 May 08
0
RMySQL and R 2.7.0 - "Error in field.types$row.names : $ operator is invalid for atomic vectors"
...and the meaning of the error (and have seen
the warnings in earlier R versions). My question is, is there an
updated version of RMySQL which deals with it, or is my on;ly option
to switch to RODBC (which I would not like to do as I am using Linux)?
If I have to use RODBC, how can I easily adapt the follolwing code?
Thanks
Rainer
> m <- dbDriver("MySQL")
> conn <- dbConnect(m, group = "test")
tblname <- "dummy"
> dat <- data.frame(n1=runif(10), n2=runif(10))
> dbWriteTable(
conn,
tblName,
dat,...