Until Last month, I was using Legacy C Driver but from last week i shifted to the new C Driver, which looks quite good and easy to use. I saved a document in the DB like which have 3 strings, 2 integers and 2 arrays. Now i want to update this array. I am trying like this,
update_mod = BCON_NEW ("$set", "{",
"Int1", BCON_INT32 (23),
"Int2",BCON_INT32(34),
"String1",BCON_UTF8("String1"),
"String2", BCON_UTF8("String2"),
"String3",BCON_UTF8("String3"),
"Array1", BCON_ARRAY(&Array1),
"Array2", BCON_ARRAY(&Array2),
"}");
}
But it's not working, if i try to update it without Array then it's working perfectly. Can anyone tell me how i can do this. and also i want to save multiple values in Array for each update.
BCON_ARRAY uses as input a list of args, not a pointer to an array. You should use something like:
BCON_ARRAY( Array1[0], Array1[1], ...);