An open API service indexing awesome lists of open source software.

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

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