Create a connection to the DBMS in R

I use the DBI libraries to create a connection to the monetdblite database in R, but I still get the same error. Here is a reproducible example and the error message I get. Any ideas on how to solve this problem?

 # Load Packages library(MonetDB.R) library(MonetDBLite) library(survey) library(DBI) # Load Data data(api) # create survey design dclus1 <- svydesign(id=~dnum, weights=~pw, data=apiclus1, fpc=~fpc) # create Temp dir. dbfolder <- tempdir() # create connection db <- dbConnect( MonetDBLite() , dbfolder ) 

Error in MonetDBLite :: monetdb_embedded_startup (built-in! GetOption ("monetdb.debug.embedded",: unused argument (getOption ("monetdb.sequential", TRUE))

As additional information I use:

  • R 3.2.4revised
  • latest version of Rstudio 0.99.893
  • Windows 10
+1
source share
1 answer

upgrade your MonetDB.R and MonetDBLite packages, a recent API crash has occurred

 install.packages(c("MonetDB.R", "MonetDBLite"), repos=c("https://dev.monetdb.org/Assets/R/", "http://cran.rstudio.com/")) 
+2
source

All Articles