⚡ Zig Guide LiveUnofficialbut fully verified
✓ Zig 0.17.0-dev.1503+1f1bee62eOn an older Zig?

Databases

Three ways into a database from Zig, at three different levels. SQLite through its C API, which is the shortest path to durable storage and a good look at how Zig links C. The PostgreSQL wire protocol written out by hand, startup message through row description, because the protocol is simpler than its client libraries suggest. And Redis RESP, which is small enough to parse in one page. For a query layer on top of these, see the ORM chapters under Projects.

3 chapters.