Skip to contents

List containers in database

Usage

docdb_list(src, ...)

Arguments

src

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

...

Passed to function DBI::dbListTables()

Value

(vector) Names of containers that can be used as parameter key with other functions such as docdb_create().

Examples

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