sql >> Databasteknik >  >> NoSQL >> MongoDB

Testar mongocxx c++ drivrutin med en exempelkod

Det står vad den säger initialiserade din drivrutin först. om du har kompilerat din drivrutin korrekt måste dessa koder fungera.

   #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. Hur definierar man en cirkel för ett mongo db-schema?

  2. java.lang.IncompatibleClassChangeError:Implementerar klass Mongo

  3. Redis-nycklar visas inte när du använder Cache-fasad i Laravel

  4. Hur man deklarerar samlingsnamn och modellnamn i mongoose