DB Module
๐ฑ Overview¶
Entiqon is a modular SQL query engine for Go focused on:
- ๐งฑ Composable and type-safe SQL builders
- ๐ Dialect abstraction and pluggable formatting logic
- ๐ Strict validation with tagged error context
- ๐งช Full method-based test coverage
๐ Quick Start¶
go get github.com/entiqon/db/v2
sql, args, err := builder.NewSelect().
From("users").
Where("email = ?", "test@entiqon.dev").
Build()
๐ Developer Guides¶
Architecture & Concepts¶
- Builder Architecture โ Dialects, StageToken, ParamBinder integration
Builders¶
Extensions¶
๐ License¶
MIT โ ยฉ Isidro Lopez / Entiqon Project