• 一个mongo-cxx的Demo(makefile编译)


    makefile

    INC_DIR=-I/opt/mongo-cxx-driver/include/mongocxx/v_noabi/  -I/opt/mongo-cxx-driver/include/bsoncxx/v_noabi/
    
    LIB_DIR=-L/opt/mongo-cxx-driver/lib64/
    
    LIB=-lmongocxx -lbsoncxx 
    
    CC=g++ -g
    CFLAGS=-Wall -std=c++11
    EXE=test
    
    all:
        $(CC) $(CFLAGS) $(EXE).cpp -o $(EXE) $(INC_DIR) $(LIB_DIR) $(LIB)
    
    clean:
        rm -rf *.o $(EXE)
        

    test.cpp

    #include <iostream>
    
    #include <bsoncxx/builder/stream/document.hpp>
    #include <bsoncxx/json.hpp>
    
    #include <mongocxx/client.hpp>
    #include <mongocxx/instance.hpp>
    
    //## #不要在root下编译任何代码(因为root的环境变量和非root不同。当前配置的环境变量,都是在非root账号的)
    // c++ --std=c++11 test.cpp -o test  -I/opt/mongo-cxx-driver/include/mongocxx/v_noabi   -I/opt/mongo-cxx-driver/include/bsoncxx/v_noabi   -L/opt/mongo-cxx-driver/lib64 -lmongocxx -lbsoncxx
    
    int main(int, char **)
    {
        mongocxx::instance inst{};
    
        mongocxx::client conn{mongocxx::uri{}};
    
        bsoncxx::builder::stream::document document{};
    
        auto collection = conn["testdb"]["testcollection"];
        document << "hello"
                 << "world";
    
        collection.insert_one(document.view());
    
        auto cursor = collection.find({});
    
        for (auto &&doc : cursor)
        {
            std::cout << bsoncxx::to_json(doc) << std::endl;
        }
    }
  • 相关阅读:
    RF04 Variables
    RF06 Settings
    RF05 Keywords
    Nginx介绍
    javascript中的迷惑点
    javascript中的undefined和null
    常见博客网站的robots.txt
    CSS层叠样式表
    web前端校验
    了解javascript
  • 原文地址:https://www.cnblogs.com/music-liang/p/12921754.html
Copyright © 2020-2023  润新知