A tiny dbms, includes some basic knowledge about dbms, and some implements of them.
website [https://cmake.org/download/]
cmake version & support c++ version [https://cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html]
cmake need to support c++ 17, so cmake version must newer than 3.8.
clang version & support c++ version [https://clang.llvm.org/cxx_status.html]
clang must newer than 5.
download website [https://www.mingw-w64.org/downloads/#sources]
[https://sourceforge.net/projects/mingw-w64/files/]
mkdir build
cd build
cmake ..
make
./app
cd src/test/bench
clang++ -std=c++17 client.cpp -o client
input connection information on client:
root (connect base db, can create new database)
user (connect to user database, can execute other all sql)
Input sql in client, then you can get the excution result. Example:
None index supported now.


