mc {MonetDB.R} | R Documentation |
mc(...)
provides a short way of connecting to a MonetDB database. It is equivalent to dbConnect(MonetDB.R(),...)
mc(dbname="demo", user="monetdb", password="monetdb", host="localhost", port=50000, timeout=86400, wait=FALSE,language="sql",...)
dbname |
Database name |
user |
Username for database |
password |
Password for database |
host |
Host name of database server |
port |
TCP Port number of database server |
timeout |
Database connection and query timeout |
wait |
Wait for DB to become available or not |
language |
Database language to be used (probably "sql") |
... |
Unused |
Returns a DBI connection to the specified MonetDB database.
## Not run: con <- mc(dbname="demo",hostname="localhost") ## End(Not run)