Hi I am trying to use sqldf to fetch data from my database. Since sqldf will always load tcltk, I can not use mclapply function. How can I do with that? Thanks.
Here is an example.
options(gsubfn.engine = "R")
require("sqldf")
require("parallel")
sqldf("select * from iris limit 5")
for ( i in 1:3) {
mclapply(1:30, rnorm)
}