https://github.com/conscious-puppet/zig-sqlite
A toy SQLite implementation in Zig
https://github.com/conscious-puppet/zig-sqlite
database sqlite zig
Last synced: about 2 months ago
JSON representation
A toy SQLite implementation in Zig
- Host: GitHub
- URL: https://github.com/conscious-puppet/zig-sqlite
- Owner: conscious-puppet
- Created: 2025-01-13T15:44:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-03T17:36:02.000Z (over 1 year ago)
- Last Synced: 2025-02-03T18:42:43.907Z (over 1 year ago)
- Topics: database, sqlite, zig
- Language: Zig
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# A toy SQLite implementation in Zig
Following the [Let's Build a Simple Database][0] tutorial to understand the database internals.
## Notes on Zig:
- [Segmentation Fault from GeneralPurposeAllocator][1]
- [Allocation is not Initialization][2]
[0]: https://cstack.github.io/db_tutorial/
[1]: https://ziggit.dev/t/segmentation-fault-from-generalpurposeallocator/7840/1
[2]: https://ziggit.dev/t/allocation-is-not-initialization/3138