mongoc_database_create_collection()
Synopsis
mongoc_collection_t *
mongoc_database_create_collection (mongoc_database_t *database,
const char *name,
const bson_t *opts,
bson_error_t *error);Parameters
database |
|
name |
The name of the new collection. |
opts |
An optional bson_t for opts to the createDatabase command. |
error |
A location for a bson_error_t or NULL. |
Description
This function creates a mongoc_collection_t from the given mongoc_database_t.
The mongoc_write_concern_t specified on the mongoc_database_t will be used, if any.
Errors
Errors are propagated via the error parameter.
Returns
This function returns a newly allocated mongoc_collection_t upon success, NULL upon failure and error is set.