Files
doris/samples/connect/cpp
Zhengguo Yang 6c6380969b [refactor] replace boost smart ptr with stl (#6856)
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
2021-11-17 10:18:35 +08:00
..
2020-01-08 23:10:58 +08:00
2020-03-30 13:54:36 +08:00

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.

Supported mysql version: 5.6, 5.7, ..., 8.0