gpt4 book ai didi

c++ - 如何在 C++ 中使用 MongoDB 的 insert_many() 方法?

转载 作者:可可西里 更新时间:2023-11-01 10:50:00 29 4
gpt4 key购买 nike

我正在使用一种方法将一些数据存储在 MongoDB 数据库中。

void save_data(std::vector< class_a > list){
using namespace std;
using bsoncxx::builder::stream::document;
using bsoncxx::builder::stream::finalize;

std::vector< bsoncxx::document::value > documents;
for (size_t i = 0; i < list.size(); i++){
documents.push_back(document{}
<< "field 1" << list[i].get_data_1()
<< "field 2" << list[i].get_data_2()
<< finalize);
}

collection.insert_many(documents);
}

我知道该列表存储了不止 1 个 class_a 对象。我使用 mongocxx::collection 对象 collection 的方法 name() 来测试它是否可访问。它按预期返回了它的名字。所以我认为有一个客户群。但是 insert_many() 方法抛出一个错误:

"mongoc_bulk_operation_execute() requires a client and one has not been set.: generic server error"

我做错了什么?

最佳答案

我明白了,来自指针 std::unique_ptr _pool 的函数 acquire() 返回了客户端。

关于c++ - 如何在 C++ 中使用 MongoDB 的 insert_many() 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42304977/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com