Documentation
¶
Overview ¶
Package gooq contains functions for working with databases
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ResultQuery ¶
type ResultQuery interface {
Fetch() []string
}
type SelectConditionStep ¶
type SelectConditionStep interface {
Query
ResultQuery
}
type SelectFromStep ¶
type SelectFromStep interface {
From(t Table) SelectJoinStep
}
type SelectJoinStep ¶
type SelectJoinStep interface {
Join(t Table) SelectOnStep
}
type SelectOnConditionStep ¶
type SelectOnConditionStep interface {
SelectWhereStep
}
type SelectOnStep ¶
type SelectOnStep interface {
On(c Condition) SelectOnConditionStep
}
type SelectSelectStep ¶
type SelectSelectStep interface {
SelectFromStep
}
func Select ¶
func Select(f ...Field) SelectSelectStep
type SelectWhereStep ¶
type SelectWhereStep interface {
Where(c Condition) SelectConditionStep
}
Click to show internal directories.
Click to hide internal directories.