ml: Shorthand connection constructor for embedded MonetDB

Description Usage Arguments Value See Also Examples

View source: R/dbi.R

Description

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

Usage

1

Arguments

...

Parameters passed directly to dbConnect()

Value

Returns a DBI connection to the specified embedded MonetDB database.

See Also

dbConnect

Examples

1
2
3
4
  library(DBI)
  dbdir <- file.path( tempdir() , "ml" )
  con <- ml(dbdir)
  dbDisconnect(con, shutdown = TRUE)

MonetDBLite documentation built on July 28, 2018, 1:02 a.m.