Description Usage Arguments Value Examples
Create a database.
1 |
cushion |
A |
dbname |
Database name |
delifexists |
If |
as |
(character) One of list (default) or json |
... |
Curl args passed on to |
JSON as a character string or a list (determined by the
as
parameter)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
user <- Sys.getenv("COUCHDB_TEST_USER")
pwd <- Sys.getenv("COUCHDB_TEST_PWD")
(x <- Cushion$new(user=user, pwd=pwd))
if ("leothetiger" %in% db_list(x)) {
invisible(db_delete(x, dbname="leothetiger"))
}
db_create(x, dbname='leothetiger')
## see if its there now
db_list(x)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.