主頁(yè) > 知識(shí)庫(kù) > 解決Go gorm踩過(guò)的坑

解決Go gorm踩過(guò)的坑

熱門(mén)標(biāo)簽:excel地圖標(biāo)注分布數(shù)據(jù) 百度地圖標(biāo)注后傳給手機(jī) 外呼系統(tǒng)顯本地手機(jī)號(hào) 阿克蘇地圖標(biāo)注 壽光微信地圖標(biāo)注 外呼系統(tǒng)用什么卡 評(píng)價(jià)高的400電話辦理 電話機(jī)器人軟件免費(fèi) 涿州代理外呼系統(tǒng)

使用gorm.Model后無(wú)法查詢(xún)數(shù)據(jù)

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

解決辦法:

打開(kāi)數(shù)據(jù)庫(kù)的時(shí)候加上parseTime=true

root:123456@tcp(127.0.0.1:3306)/mapdb?charset=utf8parseTime=true

補(bǔ)充:golang Gorm 的使用總結(jié)

建立結(jié)構(gòu)體時(shí)可以通過(guò) TableName來(lái)指定要查找的表名

func (CoinLog) TableName() string {
 return "coin_log"
}

通過(guò)gorm的映射指定對(duì)應(yīng)表的列

ID            int64              `gorm:"column:id" json:"id"`

通過(guò)預(yù)加載可以實(shí)現(xiàn)各個(gè)模型之間的一對(duì)多關(guān)系,例如下面的代碼,其中device結(jié)構(gòu)體對(duì)應(yīng)多個(gè)DeviceModular,DeviceModular又有多個(gè)CommWeimaqi

通過(guò)下面的查詢(xún)語(yǔ)句可以查詢(xún)出對(duì)應(yīng)的相關(guān)聯(lián)數(shù)據(jù)

db.SqlDB.Preload("DeviceModular", "modular_type=1").Preload("DeviceModular.CommWeimaqi").Find(device)

gorm暫時(shí)不支持批量插入

可以通過(guò)下面的方式完成批量插入的功能

  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()
  }

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • gorm update傳入struct對(duì)象,零值字段不更新的解決方案
  • gorm操作MySql數(shù)據(jù)庫(kù)的方法
  • Go基于GORM 獲取當(dāng)前請(qǐng)求所執(zhí)行的 SQL 信息(思路詳解)
  • Golang 使用gorm添加數(shù)據(jù)庫(kù)排他鎖,for update
  • golang Gorm與數(shù)據(jù)庫(kù)完整性約束詳解
  • golang gorm 結(jié)構(gòu)體的表字段缺省值設(shè)置方式
  • golang gorm 計(jì)算字段和獲取sum()值的實(shí)現(xiàn)
  • gorm FirstOrCreate和受影響的行數(shù)實(shí)例

標(biāo)簽:雞西 銅川 汕頭 梅河口 欽州 吐魯番 重慶 蘭州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解決Go gorm踩過(guò)的坑》,本文關(guān)鍵詞  解決,gorm,踩過(guò),的,坑,解決,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《解決Go gorm踩過(guò)的坑》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于解決Go gorm踩過(guò)的坑的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章