摘要:
GORM中文文档读者可以直接看文档,本文只是从文档记录个人常用的一些操作。 1.安装 go get -u github.com/jinzhu/gorm 2.使用 官方一个快速入门的例子 package main import ( "github.com/jinzhu/gorm" _ "github. 阅读全文
【go学习】查询数据库报错 "created_at": unsupported Scan, storing driver.Value type []uint8 into type *time.Time
摘要:
错误信息sql: Scan error on column index 1, name "created_at": unsupported Scan, storing driver.Value type []uint8 into type *time.Time 解决方案在连接数据库的末尾加上pars 阅读全文