https://github.com/ourway/sqlite-tiny
My first attemp to write a sqlite3 clone. It's just an experimental attempt to understand RDBMS. Never use it in any production.
https://github.com/ourway/sqlite-tiny
b-tree c parser personal-project self-learning sqlite sqlite-database sqlite-orm sqlite3 sqlite3-database tokenizer virtual-machine vm
Last synced: 5 months ago
JSON representation
My first attemp to write a sqlite3 clone. It's just an experimental attempt to understand RDBMS. Never use it in any production.
- Host: GitHub
- URL: https://github.com/ourway/sqlite-tiny
- Owner: ourway
- License: mit
- Created: 2019-05-05T23:08:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T19:30:52.000Z (over 6 years ago)
- Last Synced: 2025-03-04T16:12:14.373Z (10 months ago)
- Topics: b-tree, c, parser, personal-project, self-learning, sqlite, sqlite-database, sqlite-orm, sqlite3, sqlite3-database, tokenizer, virtual-machine, vm
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite-tiny
My first attemp to write a sqlite3 clone. It's just an experimental attempt to understand RDBMS. Please never use it in any production.
## TODOs
- [x] Prepare basic structure of project
- [ ] Find a good Unit Testing framework for C
- [ ] Learn how to use `getline`
## Other stuff
- Requirements:
Sqlite-tiny requires `clang` to compile, although it's completely ok to compile it with
`gcc`.
- Compiling:
```bash
make
```
- Running:
```bash
./bin/database
```
- Feel free to ask me anything. Drop me a mail at: `rodmena@me.com`
-- Farsheed