Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 482 Bytes

File metadata and controls

14 lines (10 loc) · 482 Bytes

Toy SQLite implementation in Rust

Implemented a toy database following the Let's Build a Simple Database tutorial to understand the database internals.

TODOs:

Have the implementation as close to SQLite as possible. The current implementation has a very rudimentary parser and a B+Tree implementation for backend storage.

  • Improve REPL
  • Refactor Command Processor
  • ...