Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BadTableName ¶
type BadTableName struct {
Id int `exql:"column:id;primary;auto_increment"`
}
func (BadTableName) TableName ¶
func (BadTableName) TableName() string
type MultiplePrimaryKey ¶
type MultiplePrimaryKey struct {
Pk1 string `exql:"column:pk1;primary"`
Pk2 string `exql:"column:pk2;primary"`
Other int `exql:"column:other"`
}
func (*MultiplePrimaryKey) TableName ¶
func (*MultiplePrimaryKey) TableName() string
type NoAutoIncrementKey ¶
type NoAutoIncrementKey struct {
Id int `exql:"column:id;primary"`
Name string `exql:"column:name"`
}
func (*NoAutoIncrementKey) TableName ¶
func (s *NoAutoIncrementKey) TableName() string
type NoColumnTag ¶
type NoColumnTag struct {
Id int `exql:"primary;auto_increment"`
}
func (NoColumnTag) TableName ¶
func (NoColumnTag) TableName() string
type NoPrimaryKey ¶
type NoPrimaryKey struct {
Id int `exql:"column:id;auto_increment"`
}
func (NoPrimaryKey) TableName ¶
func (NoPrimaryKey) TableName() string
type PrimaryUint64 ¶
type PrimaryUint64 struct {
Id uint64 `exql:"column:id;primary;auto_increment"`
Name string `exql:"column:name"`
}
func (*PrimaryUint64) TableName ¶
func (s *PrimaryUint64) TableName() string
Click to show internal directories.
Click to hide internal directories.