1. replace all boost::shared_ptr to std::shared_ptr 2. replace all boost::scopted_ptr to std::unique_ptr 3. replace all boost::scoped_array to std::unique<T[]> 4. replace all boost:thread to std::thread
How to use:
1. g++ doris_client.cpp -o doris_client `mysql_config --cflags --libs`
2. ./doris_client
What can this demo do:
This is a cpp demo for doris client, you can test basic function such as
connection, CRUD of your doris. You should install mysql prior to running
this demo.