Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 298 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 298 Bytes

MiniSQL

A mini database management system supporting simple SQL requests such as SELECT, INSERT, DELETE and UPDATE.

Key features:

  • Paged disk and buffer management.
  • Utilizing B+-tree to optimize indexing.
  • Hand-written parser.

Build

mkdir build
cd build
cmake ..
make -j