MongoDB C++ Driver
mongocxx-3.10.2
|
Class representing the result of a MongoDB bulk write operation. More...
#include <bulk_write.hpp>
Public Member Functions | |
std::int32_t | inserted_count () const |
Gets the number of documents that were inserted during this operation. More... | |
std::int32_t | matched_count () const |
Gets the number of documents that were matched during this operation. More... | |
std::int32_t | modified_count () const |
Gets the number of documents that were modified during this operation. More... | |
std::int32_t | deleted_count () const |
Gets the number of documents that were deleted during this operation. More... | |
std::int32_t | upserted_count () const |
Gets the number of documents that were upserted during this operation. More... | |
id_map | upserted_ids () const |
Gets the ids of the upserted documents. More... | |
Class representing the result of a MongoDB bulk write operation.
std::int32_t mongocxx::v_noabi::result::bulk_write::deleted_count | ( | ) | const |
Gets the number of documents that were deleted during this operation.
std::int32_t mongocxx::v_noabi::result::bulk_write::inserted_count | ( | ) | const |
Gets the number of documents that were inserted during this operation.
std::int32_t mongocxx::v_noabi::result::bulk_write::matched_count | ( | ) | const |
Gets the number of documents that were matched during this operation.
std::int32_t mongocxx::v_noabi::result::bulk_write::modified_count | ( | ) | const |
Gets the number of documents that were modified during this operation.
with | server versions below 2.6 due to the field nModified not being returned. |
std::int32_t mongocxx::v_noabi::result::bulk_write::upserted_count | ( | ) | const |
Gets the number of documents that were upserted during this operation.
id_map mongocxx::v_noabi::result::bulk_write::upserted_ids | ( | ) | const |
Gets the ids of the upserted documents.