第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何從 Go struct 生成 MySQL 表

如何從 Go struct 生成 MySQL 表

Go
翻翻過去那場雪 2023-06-12 15:46:34
我正在使用 Go 創(chuàng)建一個 CRUD 程序,我有一個相當大的結構,其中包含 70 多個字段,我想將它們添加到 MySQL 數(shù)據(jù)庫中。我想知道是否有一種方法可以自動將結構映射到我的數(shù)據(jù)庫中,這樣我就不必手動創(chuàng)建表,它只會復制我的結構?
查看完整描述

2 回答

?
幕布斯6054654

TA貢獻1876條經(jīng)驗 獲得超7個贊

我還沒有找到完全自動化該過程的方法,但至少您可以使用標簽和少量代碼創(chuàng)建它們。

解決方法示例:

在野外有一些github項目,可以幫助您實現(xiàn)這一目標。

例如可構造的

您必須向結構成員添加標簽。

來自 github 的示例:

type Stool struct {

? Id? ? ? ? ?int? ? `stbl:"id, PRIMARY_KEY, AUTO_INCREMENT"`

? Legs? ?int? ? `stbl:"number_of_legs"`

? Material string `stbl:"material"`

? Ignored? string // will not be stored. No tag.

}

當你有那個部分時,你可以像下面的例子一樣創(chuàng)建表(也來自 github 頁面)


stool := new(Stool)

stool.Material = "Wood"

db := getDb() // Get a sql.Db. You're on? the hook to do this part.


// Create a new structable.Recorder and tell it to

// bind the given struct as a row in the given table.

r := structable.New(db, "mysql").Bind("test_table", stool)


// This will insert the stool into the test_table.

err := r.Insert()


查看完整回答
反對 回復 2023-06-12
?
慕的地10843

TA貢獻1785條經(jīng)驗 獲得超8個贊

嘗試生成模型

go get -u github.com/DaoYoung/gen-model

gen-model init # then set value in .gen-model.yaml

gen-model create

完畢


查看完整回答
反對 回復 2023-06-12
  • 2 回答
  • 0 關注
  • 160 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號