解決Go gorm踩過的坑
使用gorm.Model後無法查詢數據
Scan error on column index 1, name “created_at”
提示:
Scan error on column index 1, name “created_at”: unsupported Scan, storing driver.Value type []uint8
解決辦法:
打開數據庫的時候加上parseTime=true
root:123456@tcp(127.0.0.1:3306)/mapdb?charset=utf8&parseTime=true
補充:golang Gorm 的使用總結
建立結構體時可以通過 TableName來指定要查找的表名
func (CoinLog) TableName() string { return "coin_log" }
通過gorm的映射指定對應表的列
ID int64 `gorm:"column:id" json:"id"`
通過預加載可以實現各個模型之間的一對多關系,例如下面的代碼,其中device結構體對應多個DeviceModular,DeviceModular又有多個CommWeimaqi
通過下面的查詢語句可以查詢出對應的相關聯數據
db.SqlDB.Preload("DeviceModular", "modular_type=1").Preload("DeviceModular.CommWeimaqi").Find(&device)
gorm暫時不支持批量插入
可以通過下面的方式完成批量插入的功能
tx := db.SqlDB.Begin() sqlStr := "INSERT INTO report_form (id,create_time,choose_count, device_fall_count,game_order_count,coin_count,member_count," + "day_member_count,visit_count,lgz_coin_count,weimaqi_coin_count,store_id,real_coin_count,m_coin_count,coin_spec) VALUES " vals := []interface{}{} const rowSQL = "(?,?, ?, ?, ?, ?, ?, ?, ?, ?,?,?,?,?,?)" var inserts []string for _, elem := range reportForms { inserts = append(inserts, rowSQL) vals = append(vals, elem.ID, elem.CreateTime, elem.ChooseCount, elem.DeviceFallCount, elem.GameOrderCount, elem.CoinCount, elem.MemberCount, elem.DayMemberCount, elem.VisitCount, elem.LgzCoinCount, elem.WeimaqiCoinCount, elem.StoreId, elem.RealCoinCount, elem.MCoinCount, elem.CoinSpec) } sqlStr = sqlStr + strings.Join(inserts, ",") err := tx.Exec(sqlStr, vals...).Error if err != nil { tx.Rollback() fmt.Print(err) }else { tx.Commit() }
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。
推薦閱讀:
- GO項目實戰之Gorm格式化時間字段實現
- gORM操作MySQL的實現
- Golang 使用gorm添加數據庫排他鎖,for update
- Go語言操作MySQL的知識總結
- golang Gorm框架講解