Update Documents
Overview
このガイドでは、 C++ドライバーを使用してMongoDBコレクション内のドキュメントを更新する方法を学習できます。 単一のドキュメントを更新するには update_one()
メソッドを呼び出し、複数のドキュメントを更新するにはupdate_many()
メソッドを呼び出します。
サンプル データ
このガイドの例では、 Atlasサンプルデータセットのsample_restaurants
データベースのrestaurants
コレクションを使用します。 C++アプリケーションからこのコレクションにアクセスするには、Atlasmongocxx::client
クラスターに接続する をインスタンス化し、 変数と 変数に次の値を割り当てます。db
collection
auto db = client["sample_restaurants"]; auto collection = db["restaurants"];
MongoDB Atlasクラスターを無料で作成して、サンプルデータセットをロードする方法については、 「Atlas を使い始める」ガイドを参照してください。
アップデート操作
MongoDB では、次の方法で更新操作を実行できます。
update_one()
は、検索条件に一致する最初のドキュメントを更新します。update_many()
は、検索条件に一致するすべてのドキュメントを更新します
各更新方法には次のパラメーターが必要です。
クエリフィルタードキュメント: 更新するドキュメントを指定します。 クエリフィルターの詳細については、 MongoDB Serverマニュアルの「クエリフィルター ドキュメント 」セクションを参照してください。
ドキュメントの更新:更新演算子、または実行する更新の種類と、変更するフィールドと値を指定します。 更新演算子とその使用方法のリストについては、 MongoDB Serverマニュアルの「フィールド更新演算子 」のガイドを参照してください。
1 つのドキュメントの更新
次の例では、 update_one()
メソッドを使用して、 restaurants
コレクション内のドキュメントのname
値を"Bagels N Buns"
から"2 Bagels 2 Buns"
に更新します。
auto query_filter = make_document(kvp("name", "Bagels N Buns")); auto update_doc = make_document(kvp("$set", make_document(kvp("name", "2 Bagels 2 Buns")))); auto result = collection.update_one(query_filter.view(), update_doc.view());
多くのドキュメントの更新
次の例では、 update_many()
メソッドを使用して、 cuisine
の値が"Pizza"
であるすべてのドキュメントを更新します。 更新後、ドキュメントのcuisine
値は"Pasta"
になります。
auto query_filter = make_document(kvp("cuisine", "Pizza")); auto update_doc = make_document(kvp("$set", make_document(kvp("cuisine", "Pasta")))); auto result = collection.update_many(query_filter.view(), update_doc.view());
更新操作をカスタマイズする
mongocxx::options::update
クラスのインスタンスを任意のパラメータとして渡すことで、 update_one()
メソッドとupdate_many()
メソッドの動作を変更できます。 次の表では、 mongocxx::options::update
インスタンスに設定できるフィールドを説明しています。
フィールド | 説明 |
---|---|
upsert | Specifies whether the update operation performs an upsert operation if no
documents match the query filter. For more information, see the upsert
statement
in the MongoDB Server manual. Defaults to false . |
bypass_document_validation | Specifies whether the update operation bypasses document validation. This lets you
update documents that don't meet the schema validation requirements, if any
exist. For more information about schema validation, see Schema
Validation in the MongoDB
Server manual. Defaults to false . |
collation | Specifies the kind of language collation to use when sorting
results. For more information, see Collation
in the MongoDB Server manual. |
array_filters | Specifies which array elements an update applies to if the operation modifies
array fields. |
hint | Sets the index to scan for documents.
For more information, see the hint statement
in the MongoDB Server manual. |
write_concern | Sets the write concern for the operation.
For more information, see Write Concern
in the MongoDB Server manual. |
let | Specifies a document with a list of values to improve operation readability.
Values must be constant or closed expressions that don't reference document
fields. For more information, see the let statement in the
MongoDB Server manual. |
comment | A comment to attach to the operation. For more information, see the insert command
fields guide in the
MongoDB Server manual for more information. |
次の例では、 update_many()
メソッドを使用して、 borough
の値が"Manhattan"
であるすべてのドキュメントを検索します。 次に、これらのドキュメントのborough
値を"Manhattan (north)"
にアップデートします。 upsert
オプションがtrue
に設定されているため、クエリフィルターが既存のドキュメントと一致しない場合、 C++ドライバーは新しいドキュメントを挿入します。
mongocxx::options::update opts{}; opts.upsert(true); auto query_filter = make_document(kvp("borough", "Manhattan")); auto update_doc = make_document(kvp("$set", make_document(kvp("borough", "Manhattan (north)")))); auto result = collection.update_many(query_filter.view(), update_doc.view(), opts);
戻り値
update_one()
メソッドとupdate_many()
メソッドはmongocxx::result::update
クラスのインスタンスを返します。 このクラスには、次のメンバー関数が含まれています。
関数 | 説明 |
---|---|
matched_count() | Returns the number of documents that matched the query filter, regardless of
how many were updated. |
modified_count() | Returns number of documents modified by the update operation. If an updated
document is identical to the original, it is not included in this
count. |
result() | Returns the raw result document for the operation. |
upserted_count() | Returns the number of document that were upserted into the database. |
upserted_id() | Returns the ID of the document that was upserted in the database, if the driver
performed an upsert. |
次の例では、 update_many()
メソッドを使用して、一致するドキュメントのname
フィールドを"Dunkin' Donuts"
から"Dunkin'"
にアップデートします。 変更されたドキュメントの数を出力するには、 modified_count()
メンバー関数を呼び出します。
auto query_filter = make_document(kvp("name", "Dunkin' Donuts")); auto update_doc = make_document(kvp("$set", make_document(kvp("name", "Dunkin'")))); auto result = collection.update_many(query_filter.view(), update_doc.view()); std::cout << "Modified documents: " << result->modified_count() << std::endl;
Modified documents: 206
詳細情報
クエリフィルターの作成の詳細については、「 クエリの指定」ガイドを参照してください。
API ドキュメント
このガイドで説明したメソッドや型の詳細については、次の API ドキュメントを参照してください。