mongoc_database_command (3) - Linux Manuals
mongoc_database_command: The mongoc_database_command() function shall execute a command on a database. This is performed lazily after calling mongoc_cursor_next() on the resulting cursor structure.
NAME
mongoc_database_command() - The mongoc_database_command() function shall execute a command on a database. This is performed lazily after calling mongoc_cursor_next() on the resulting cursor structure.SYNOPSIS
mongoc_cursor_t * mongoc_database_command (mongoc_database_t *database, mongoc_query_flags_t flags, uint32_t skip, uint32_t limit, uint32_t batch_size, const bson_t *command, const bson_t *fields, const mongoc_read_prefs_t *read_prefs);
PARAMETERS
- database
- A mongoc_database_t \&.
- flags
- A mongoc_query_flags_t \&.
- skip
- The number of documents to skip on the server.
- limit
- The maximum number of documents to return from the cursor.
- batch_size
- Attempt to batch results from the server in groups of batch_size documents.
- command
- A bson_t containing the command.
- fields
- An optional bson_t containing the fields to return. NULL for all fields.
- read_prefs
- An optional mongoc_read_prefs_t \&.
The mongoc_database_command(3) function shall execute a command on a database. This is performed lazily after calling mongoc_cursor_next(3) on the resulting cursor structure.
RETURNS
This command returns a mongoc_cursor_t that should be freed with mongoc_cursor_destroy(3) when no longer in use.
COLOPHON
This page is part of MongoDB C Driver. Please report any bugs at https://jira.mongodb.org/browse/CDRIVER.