Skip to content

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

Builders

Extensions


๐Ÿ“„ License

MIT โ€” ยฉ Isidro Lopez / Entiqon Project