MonetDBLite (version 0.6.0)

ml: Shorthand connection constructor for embedded MonetDB

Description

ml(...) provides a short way of connecting to an embedded MonetDB database. It is equivalent to dbConnect(MonetDBLite(),...)

Usage

ml(...)

Arguments

...

Parameters passed directly to dbConnect()

Value

Returns a DBI connection to the specified embedded MonetDB database.

See Also

dbConnect

Examples

Run this code
# NOT RUN {
  library(DBI)
  dbdir <- file.path( tempdir() , "ml" )
  con <- ml(dbdir)
  dbDisconnect(con, shutdown = TRUE)
# }

Run the code above in your browser using DataCamp Workspace