mongoc_database_find_collections()¶
Synopsis¶
mongoc_cursor_t *
mongoc_database_find_collections (mongoc_database_t *database,
const bson_t *filter,
bson_error_t *error)
BSON_GNUC_DEPRECATED_FOR (mongoc_database_find_collections_with_opts);
Deprecated¶
This function is deprecated and should not be used in new code.
Please use mongoc_database_find_collections_with_opts() instead.
Description¶
Fetches a cursor containing documents, each corresponding to a collection on this database.
Parameters¶
database
: A mongoc_database_t.filter
: A matcher used by the server to filter the returned collections. May beNULL
.error
: An optional location for a bson_error_t orNULL
.
Errors¶
Errors are propagated via the error
parameter.
Returns¶
A cursor where each result corresponds to the server’s representation of a collection in this database.