MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Kiểm tra trình điều khiển c ++ mongocxx bằng mã mẫu

Nó cho biết những gì nó nói đã khởi tạo trình điều khiển của bạn trước tiên. nếu bạn đã biên dịch trình điều khiển của mình một cách chính xác, các mã này phải hoạt động.

   #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. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB:Kiểm tra xem mảng lồng nhau có chứa mảng con không

  2. Chèn mảng đối tượng vào MongoDB

  3. MongoDB $ isoWeekYear

  4. hoạt động sql 'like' trên các số trong mongodb

  5. Thiết lập docker Mongo bị hỏng sau khi khởi động lại (bộ điều khiển unifi trên raspberry pi)