MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Neuer C++ Mongo-Treiber:wie man den Typ sieht und wie man den String-Wert erhält

  1. Drucktyp als String (LIGNE 67 )

    #include <bsoncxx/types.hpp>
    
    std::string bsoncxx::to_string(bsoncxx::type rhs);`
    
  2. Element zu std::string

    stdx::string_view view = e.get_utf8().value;
    string name = view.to_string();