man_page: | mongoc_database_find_collections |
---|
Warning
.. deprecated:: 1.9.0 Use :symbol:`mongoc_database_find_collections_with_opts()` instead.
mongoc_cursor_t *
mongoc_database_find_collections (mongoc_database_t *database,
const bson_t *filter,
bson_error_t *error);
Fetches a cursor containing documents, each corresponding to a collection on this database.
database
: A :symbol:`mongoc_database_t`.filter
: A matcher used by the server to filter the returned collections. May beNULL
.error
: An optional location for a :symbol:`bson_error_t <errors>` orNULL
.
Errors are propagated via the error
parameter.
This function returns a newly allocated :symbol:`mongoc_cursor_t` that should be freed with :symbol:`mongoc_cursor_destroy()` when no longer in use, or NULL in case of error. The user must call :symbol:`mongoc_cursor_next()` on the returned :symbol:`mongoc_cursor_t` to execute the initial command.
In the returned cursor each result corresponds to the server's representation of a collection in this database.
The cursor functions :symbol:`mongoc_cursor_set_limit`, :symbol:`mongoc_cursor_set_batch_size`, and :symbol:`mongoc_cursor_set_max_await_time_ms` have no use on the returned cursor.