Learn R Programming

nodbi (version 0.9.0)

docdb_list: List containers in database

Description

List containers in database

Usage

docdb_list(src, ...)

Value

(vector) of names of containers that can be used as parameter key with other functions such as docdb_create(). Parameter key corresponds to collection for MongoDB, dbname for CouchDB, index for Elasticsearch and a table name for SQLite and PostgreSQL

Arguments

src

Source object, result of call to any of functions src_mongo(), src_sqlite(), src_elastic(), src_couchdb() or src_postgres()

...

Passed to functions:

Examples

Run this code
if (FALSE) {
src <- src_sqlite()
docdb_create(src, "iris", iris)
docdb_list(src)
}

Run the code above in your browser using DataLab