Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.53 KB

mongoc_database_find_collections.rst

File metadata and controls

47 lines (30 loc) · 1.53 KB
man_page:mongoc_database_find_collections

mongoc_database_find_collections()

Warning

.. deprecated:: 1.9.0

   Use :symbol:`mongoc_database_find_collections_with_opts()` instead.

Synopsis

mongoc_cursor_t *
mongoc_database_find_collections (mongoc_database_t *database,
                                  const bson_t *filter,
                                  bson_error_t *error);

Description

Fetches a cursor containing documents, each corresponding to a collection on this database.

Parameters

Errors

Errors are propagated via the error parameter.

Returns

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.