Implementation of sqlite in C++
Make sure you have installed:
- A C++ compiler (e.g g++, clang or MSVC)
- CMake >= 3.10
- clone the repo
git clone https://github.com/iskandarem/sqlite.git cd ./sqlite - Create build directory (to keep files separate from source )
mkdir build cd build - Run CMake to configure the project
cmake ..
- Build the project
make
- run the project
./sqlite
|
Iskandar Emomzoda |