.\" Man page generated from reStructuredText. . .TH "MONGOC_COLLECTION_COUNT" "3" "Jun 04, 2021" "1.17.6" "libmongoc" .SH NAME mongoc_collection_count \- mongoc_collection_count() . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH DEPRECATED .sp This function is deprecated and should not be used in new code. Use \fBmongoc_collection_count_documents\fP or \fBmongoc_collection_estimated_document_count\fP instead. .sp \fBmongoc_collection_count_documents\fP has similar performance to calling \fBmongoc_collection_count\fP with a non\-NULL \fBquery\fP, and is guaranteed to retrieve an accurate collection count. See migrating from deprecated count functions for details. .sp \fBmongoc_collection_estimated_document_count\fP has the same performance as calling \fBmongoc_collection_count\fP with a NULL \fBquery\fP, but is not guaranteed to retrieve an accurate collection count. .sp This function is considered a retryable read operation. Upon a transient error (a network error, errors due to replica set failover, etc.) the operation is safely retried once. If \fBretryreads\fP is false in the URI (see \fBmongoc_uri_t\fP) the retry behavior does not apply. .SH SYNOPSIS .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C int64_t mongoc_collection_count (mongoc_collection_t *collection, mongoc_query_flags_t flags, const bson_t *query, int64_t skip, int64_t limit, const mongoc_read_prefs_t *read_prefs, bson_error_t *error) BSON_GNUC_DEPRECATED_FOR (mongoc_collection_count_documents or mongoc_collection_estimated_document_count); .ft P .fi .UNINDENT .UNINDENT .SH PARAMETERS .INDENT 0.0 .IP \(bu 2 \fBcollection\fP: A \fBmongoc_collection_t\fP\&. .IP \(bu 2 \fBflags\fP: A \fBmongoc_query_flags_t\fP\&. .IP \(bu 2 \fBquery\fP: A \fI\%bson_t\fP containing the query. .IP \(bu 2 \fBskip\fP: A int64_t, zero to ignore. .IP \(bu 2 \fBlimit\fP: A int64_t, zero to ignore. .IP \(bu 2 \fBread_prefs\fP: A \fBmongoc_read_prefs_t\fP or \fBNULL\fP\&. .IP \(bu 2 \fBerror\fP: An optional location for a \fBbson_error_t\fP or \fBNULL\fP\&. .UNINDENT .SH DESCRIPTION .sp This function shall execute a count query on the underlying \(aqcollection\(aq. The bson \(aqquery\(aq is not validated, simply passed along as appropriate to the server. As such, compatibility and errors should be validated in the appropriate server documentation. .sp For more information, see the \fI\%query reference\fP at the MongoDB website. .sp The \fBmongoc_read_concern_t\fP specified on the \fBmongoc_collection_t\fP will be used, if any. If \fBread_prefs\fP is NULL, the collection\(aqs read preferences are used. .SH ERRORS .sp Errors are propagated via the \fBerror\fP parameter. .SH RETURNS .sp \-1 on failure, otherwise the number of documents counted. .SH EXAMPLE .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C #include #include #include static void print_query_count (mongoc_collection_t *collection, bson_t *query) { bson_error_t error; int64_t count; count = mongoc_collection_count ( collection, MONGOC_QUERY_NONE, query, 0, 0, NULL, &error); if (count < 0) { fprintf (stderr, "Count failed: %s\en", error.message); } else { printf ("%" PRId64 " documents counted.\en", count); } } .ft P .fi .UNINDENT .UNINDENT .SH AUTHOR MongoDB, Inc .SH COPYRIGHT 2017-present, MongoDB, Inc .\" Generated by docutils manpage writer. .