sql >> Database >  >> NoSQL >> MongoDB

Mongocxx c++-stuurprogramma testen met een voorbeeldcode

Het zegt wat het zegt, uw stuurprogramma is eerst geïnitialiseerd. als u uw stuurprogramma correct hebt gecompileerd, moeten deze codes werken.

   #include <cstdlib>
   #include <iostream>
   #include <bsoncxx/builder/stream/document.hpp>
   #include <bsoncxx/json.hpp>
   #include <mongocxx/client.hpp>
   #include <mongocxx/instance.hpp>
   #include <mongocxx/uri.hpp>


   using bsoncxx::builder::stream::close_document;
   using bsoncxx::builder::stream::document;
   using bsoncxx::builder::stream::finalize;
   using bsoncxx::builder::stream::open_document;
   mongocxx::instance instance{};// don't put inside main 

int main() {
mongocxx::client conn{ mongocxx::uri{ "mongodb://localhost:27017" } };
auto coll = conn["test"]["coll"];
bsoncxx::builder::stream::document document{};
document << "Data" << "hello";
coll.insert_one(document.view());

return 0;
}


  1. Hoe efficiënt onderscheidend presteren met meerdere sleutels?

  2. MongoDB werkt niet met PHP op WAMP

  3. Spring Data MongoDB-aggregatie - match op berekende waarde

  4. Mongodb groeperen en pushen met lege arrays