|
WARNING: Deprecated since version 1.29.0: This function is
deprecated and should not be used in new code. Use
mongoc_database_command_simple() instead.
SYNOPSISmongoc_cursor_t * mongoc_database_command (mongoc_database_t *database, DESCRIPTIONThis function creates a cursor which will execute the command when mongoc_cursor_next() is called on it. The database's read preference, read concern, and write concern are not applied to the command, and mongoc_cursor_next() will not check the server response for a write concern error or write concern timeout. This function is not considered a retryable read operation. PARAMETERS
MIGRATINGmongoc_database_command() is deprecated. The following example uses mongoc_database_command(): Before const bson_t *reply;
bson_t *cmd = BCON_NEW ("find", "foo", "filter", "{", "}");
mongoc_cursor_t *cursor = mongoc_database_command (db,
The above code block may be rewritten to use mongoc_database_command_simple() instead, as shown below: After bson_t reply;
bson_error_t error;
bson_t *cmd = BCON_NEW ("find", "foo", "filter", "{", "}");
if (!mongoc_database_command_simple (db, cmd, NULL /* read prefs */, &reply, &error)) {
RETURNSThis function returns a newly allocated mongoc_cursor_t that should be freed with mongoc_cursor_destroy() when no longer in use. The returned mongoc_cursor_t is never NULL, even on error. The user must call mongoc_cursor_next() on the returned mongoc_cursor_t to execute the initial command. Cursor errors can be checked with mongoc_cursor_error_document(). It always fills out the bson_error_t if an error occurred, and optionally includes a server reply document if the error occurred server-side. WARNING: Failure to handle the result of this function is a
programming error.
AUTHORMongoDB, Inc COPYRIGHT2009-present, MongoDB, Inc.
|