Documentation ¶
Index ¶
Constants ¶
View Source
const ( SQLITE int = iota POSTGRES MYSQL )
View Source
const ( INTEGER int = iota VARCHAR BOOLEAN REAL BLOB )
List of basic types
View Source
const ( AUTO_INCREMENT = iota PRIMARY_KEY )
List of vendor-specific keywords
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Dialect ¶
type Dialect interface { Table(*Table) string Index(*Table, *Index) string Column(*Field) string Insert(*Table) string Update(*Table, []*Field) string Delete(*Table, []*Field) string Select(*Table, []*Field) string SelectCount(*Table, []*Field) string SelectRange(*Table, []*Field) string Param(int) string Token(int) string }
Click to show internal directories.
Click to hide internal directories.