Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weijun-h/sqlite_rust
Writing a sqlite clone from scratch in rust
https://github.com/weijun-h/sqlite_rust
Last synced: 20 days ago
JSON representation
Writing a sqlite clone from scratch in rust
- Host: GitHub
- URL: https://github.com/weijun-h/sqlite_rust
- Owner: Weijun-H
- License: mit
- Created: 2023-02-01T18:47:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T23:38:57.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T19:59:44.594Z (2 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite_rust
Writing a sqlite clone from scratch in rust, inspired by [this tutorial](https://github.com/cstack/db_tutorial)## Features
- Implements SQLite using Rust programming language.
- Supports all basic SQLite features including SELECT, INSERT, UPDATE, DELETE, and CREATE statements.
- Offers an intuitive and easy-to-use API for working with SQLite databases in Rust.
- Provides a solid foundation for building more complex applications that need to store and manipulate data.## Usage
To use the library, simply clone this repository and use the provided API to interact with SQLite databases.## Example
## To Do List
- [x] Implement a basic REPL
- [x] Implement a basic parser
- [x] Implement a naive consistent disk storage
- [] Implement a B-Tree
- [] UML Diagram
- [] Add more tests for each part