Can't add an element to bsoncxx document
auto doc = bsoncxx::builder::basic::document{};
const char* key = "asd";
const char* value = "123";
doc.append(kvp(key,…
I tried the conventional way of passing an array to a wrapper function in which I'm using insertOne to insert data using for loop. No build issues, but while running, I'm hitting this error: Microsoft C++ exception:…
I have a table as UserData which has strucure like
id category value
1 AR 100
2 WT 90
3 WT 12
4 AR 1000
5 AR 2005
6 WT 122
7 BP 112
8 BP 18
now I want to…