Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dialect ¶
type Dialect interface {
// QuoteIdent returns a quoted identifier if it needs quoting
// (e.g., reserved words, mixed case identifiers)
QuoteIdent(s string) string
// TypeName returns the SQL type name for the given namespace and name.
// This handles dialect-specific type name mappings (e.g., pg_catalog.int4 -> integer)
TypeName(ns, name string) string
// Param returns the parameter placeholder for the given parameter number.
// PostgreSQL uses $1, $2, etc. MySQL uses ?
Param(n int) string
// NamedParam returns the named parameter placeholder for the given name.
// PostgreSQL uses @name, SQLite uses :name
NamedParam(name string) string
// Cast formats a type cast expression.
// PostgreSQL uses expr::type, MySQL uses CAST(expr AS type)
Cast(arg, typeName string) string
}
Dialect provides SQL dialect-specific formatting behavior
Click to show internal directories.
Click to hide internal directories.