https://github.com/conscious-puppet/rust-sqlite
Toy SQLite implementation in Rust
https://github.com/conscious-puppet/rust-sqlite
database rust sqlite
Last synced: 2 months ago
JSON representation
Toy SQLite implementation in Rust
- Host: GitHub
- URL: https://github.com/conscious-puppet/rust-sqlite
- Owner: conscious-puppet
- License: mit
- Created: 2024-12-12T13:27:30.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-04T17:38:07.000Z (over 1 year ago)
- Last Synced: 2025-02-23T14:42:38.012Z (over 1 year ago)
- Topics: database, rust, sqlite
- Language: Rust
- Homepage:
- Size: 69.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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