db_info {sofa} | R Documentation |
List database info.
Description
List database info.
Usage
db_info(cushion, dbname, as = "list", ...)
Arguments
cushion |
A |
dbname |
Database name |
as |
(character) One of list (default) or json |
... |
Curl args passed on to |
Value
JSON as a character string or a list (determined by the
as
parameter)
Examples
## Not run:
user <- Sys.getenv("COUCHDB_TEST_USER")
pwd <- Sys.getenv("COUCHDB_TEST_PWD")
(x <- Cushion$new(user=user, pwd=pwd))
if ("sofadb" %in% db_list(x)) {
invisible(db_delete(x, dbname="sofadb"))
}
db_create(x, dbname='sofadb')
db_info(x, dbname="sofadb")
db_info(x, dbname="sofadb", as='json')
## End(Not run)
[Package sofa version 0.4.0 Index]