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
- Host: GitHub
- URL: https://github.com/conscious-puppet/rust-sqlite
- Owner: conscious-puppet
- License: mit
- Created: 2024-12-12T13:27:30.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-04T10:52:00.000Z (12 months ago)
- Last Synced: 2025-02-04T11:31:51.088Z (12 months ago)
- Topics: database, rust, sqlite
- Language: Rust
- Homepage:
- Size: 63.5 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