Go教程

【go学习】查询数据库报错 "created_at": unsupported Scan, storing driver.Value type []uint8 into type

本文主要是介绍【go学习】查询数据库报错 "created_at": unsupported Scan, storing driver.Value type []uint8 into type,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

错误信息
sql: Scan error on column index 1, name "created_at": unsupported Scan, storing driver.Value type []uint8 into type *time.Time

解决方案
在连接数据库的末尾加上parseTime=true,如下:

Db, err = gorm.Open("mysql", "username:password@tcp(127.0.0.1:3306)/gin?charset=utf8&parseTime=true")

这篇关于【go学习】查询数据库报错 "created_at": unsupported Scan, storing driver.Value type []uint8 into type的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!