beego orm
查詢(xún)數(shù)據(jù)庫(kù)之后幻锁,數(shù)據(jù)需要保存到相應(yīng)的struct 數(shù)組
中。 struct
中每個(gè)字段需要添加 orm colume(列名)
疫衩, 否則無(wú)法給struct
中的字段賦值
type EventIgnore struct {
EventID string `json:"event_id" orm:"column(event_id)"`
StartTime time.Time `json:"start_time" orm:"column(start_time)"`
EndTime time.Time `json:"end_time" orm:"column(end_time)"`
}
var ignores []EventIgnore
_, err := q.Raw("select event_id, start_time, end_time from event_ignore where end_time<?", t).QueryRows(&ignores)
fmt.Println(ignores)