1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-05 16:06:11 +02:00
fastnetmon-rewritten/src/tests/mongodb_client.cpp
2022-04-20 21:45:43 +01:00

34 lines
925 B
C++

#include <bson.h>
#include <mongoc.h>
#include <stdio.h>
// g++ mongodb_client.cpp $(PKG_CONFIG_PATH=/opt/mongo_c_driver/lib/pkgconfig pkg-config --cflags --libs libmongoc-1.0)
int main(int argc, char* argv[]) {
mongoc_client_t* client;
mongoc_collection_t* collection;
mongoc_cursor_t* cursor;
bson_error_t error;
bson_oid_t oid;
bson_t* doc;
mongoc_init();
client = mongoc_client_new("mongodb://localhost:27017/");
collection = mongoc_client_get_collection(client, "test", "test");
doc = bson_new();
bson_oid_init(&oid, NULL);
BSON_APPEND_OID(doc, "_id", &oid);
BSON_APPEND_UTF8(doc, "hello", "world");
if (!mongoc_collection_insert(collection, MONGOC_INSERT_NONE, doc, NULL, &error)) {
printf("Error: %s\n", error.message);
}
bson_destroy(doc);
mongoc_collection_destroy(collection);
mongoc_client_destroy(client);
return 0;
}