SQLite wrapper for Zig - zero runtime dependencies
Find a file
reugenio 167e54530f feat: add advanced features - batch bind, row iterator, FTS5, JSON, R-Tree, virtual tables
New features:
- Batch binding: stmt.bindAll(.{ "Alice", 30, 95.5 }), stmt.rebind()
- Row iterator: stmt.iterator(), Row struct with convenient accessors
- File control: setFileControlInt(), getPersistWal(), setChunkSize()
- FTS5 helpers: Fts5 struct with createSimpleTable(), search(), highlight()
- JSON helpers: Json struct with extract(), set(), createArray(), patch()
- R-Tree helpers: RTree struct with insert2D(), queryIntersects2D(), spatial joins
- Virtual table foundations: vtable.zig with helper types
- BoundingBox2D/3D, GeoCoord with distance calculations

Total: 5861 lines across 13 modules
All 54 tests passing.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-08 20:30:10 +01:00
docs refactor: modularize root.zig into specialized modules 2025-12-08 19:54:19 +01:00
examples Initial commit: zsqlite - SQLite wrapper for Zig 2025-12-08 16:45:28 +01:00
src feat: add advanced features - batch bind, row iterator, FTS5, JSON, R-Tree, virtual tables 2025-12-08 20:30:10 +01:00
vendor Initial commit: zsqlite - SQLite wrapper for Zig 2025-12-08 16:45:28 +01:00
.gitignore Initial commit: zsqlite - SQLite wrapper for Zig 2025-12-08 16:45:28 +01:00
build.zig feat(v0.5): Fase 3B - Callbacks avanzados, limits y timestamps 2025-12-08 18:52:18 +01:00
CLAUDE.md v0.4: Fase 3A complete - Blob I/O, Hooks, Aggregate Functions 2025-12-08 18:02:01 +01:00