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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

創(chuàng)建記錄后是否必須保存記錄才能使用 Gorm 將其保存在 SQLITE 中?

創(chuàng)建記錄后是否必須保存記錄才能使用 Gorm 將其保存在 SQLITE 中?

Go
三國紛爭(zhēng) 2022-10-10 15:40:03
我正在使用帶有 Gorm 的 SQLITE 數(shù)據(jù)庫,需要保存一條新記錄。我遇到的問題是,當(dāng)我創(chuàng)建記錄并重新啟動(dòng)程序時(shí),在數(shù)據(jù)庫中找不到該記錄。創(chuàng)建后是否需要保存記錄?Gorm 文檔中給出的示例程序不保存記錄。
查看完整描述

1 回答

?
叮當(dāng)貓咪

TA貢獻(xiàn)1776條經(jīng)驗(yàn) 獲得超12個(gè)贊

您不必Save記錄您已經(jīng)傳遞的記錄Create。


您可以通過運(yùn)行以下命令對(duì)此進(jìn)行測(cè)試:


main.go


package main


import (

    "fmt"

    "gorm.io/driver/sqlite"

    "gorm.io/gorm"

)


type Product struct {

    gorm.Model

    Code  string

    Price uint

}


func main() {

    db, err := gorm.Open(sqlite.Open("test.db"), &gorm.Config{})

    if err != nil {

        panic("failed to connect database")

    }

    db.AutoMigrate(&Product{})


    var product Product

    if db.First(&product).Error == gorm.ErrRecordNotFound {

        fmt.Println("no product record, creating now...")

        db.Create(&Product{Code: "D42", Price: 100})

    } else {

        fmt.Printf("product record found: %v", product)

    }

}

go run main.go

no product record, creating now...

go run main.go

product record found: { ... }


查看完整回答
反對(duì) 回復(fù) 2022-10-10
  • 1 回答
  • 0 關(guān)注
  • 167 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)