An open API service indexing awesome lists of open source software.

https://github.com/conscious-puppet/rust-sqlite

Toy SQLite implementation in Rust
https://github.com/conscious-puppet/rust-sqlite

database rust sqlite

Last synced: 12 months ago
JSON representation

Toy SQLite implementation in Rust

Awesome Lists containing this project

README

          

# Toy SQLite implementation in Rust

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

# TODOs:
Have the implementation as close to [SQLite][1] as possible.
The current implementation has a very rudimentary parser and a B+Tree implementation for backend storage.

- [ ] Improve REPL
- [ ] Refactor Command Processor
- [ ] ...

[0]: https://cstack.github.io/db_tutorial/
[1]: https://www.sqlite.org/arch.html