List containers in database
Arguments
- src
Source object, result of call to any of functions
src_mongo(),src_sqlite(),src_elastic(),src_couchdb()src_duckdb()orsrc_postgres()- ...
Passed to function
DBI::dbListTables()
Value
Vector of names of containers that can be
used as parameter key with other functions such as
docdb_create().
Examples
if (FALSE) { # \dontrun{
src <- src_sqlite()
docdb_create(src, "iris", iris)
docdb_list(src)
} # }
