gpt4 book ai didi

go - gorm 为什么不在日志中报告插入错误?

转载 作者:IT王子 更新时间:2023-10-29 02:37:03 26 4
gpt4 key购买 nike

我尝试使用 GORM 执行插入,我的日志显示插入语句并说

0 rows affected or returned

如果我复制并粘贴插入语句,我可以在 psql 中看到这个错误:

ERROR: null value in column "start_dt" violates not-null constraint

有没有办法让我立即在我的 go 日志中看到这个错误?

最佳答案

您应该在 Debug模式下使用 gorm 以查看错误消息!

// Enable Logger, show detailed log
db.LogMode(true)

// Disable Logger, don't show any log even errors
db.LogMode(false)

// Debug a single operation, show detailed log for this operation
db.Debug().Where("name = ?", "jinzhu").First(&User{})

Gorm documentation for Logger

关于go - gorm 为什么不在日志中报告插入错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51919428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com