我收到此错误,并尝试了Internet和stackoverlow中的所有可用方法来解决此问题。我尝试使用sqlx软件包连接MySQL数据库并运行结果后运行查询。我已经尝试过共享类似问题的解决方案,但对我没有任何帮助。
type Trip struct {
ID int `db:"id"`
Type int `db:"type"`
DID int `db:"did"`
DUID int `db:"duid"`
VID int `db:"vid"`
Sts string `db:"sts"`
AM int `db:"am"`
Sdate null.Time `db:"sdate"`
}
func GetTripByID(db sqlx.Queryer, id int) (*Trip, error) {
row := db.QueryRowx("select ID,Type,DID,DUID,VID,Sts,AM,Sdate from mytbl where ID=123", id)
var t Trip
err := row.StructScan(&t)
if err != nil {
fmt.Println("Error during struct scan")
return nil, err
}
return &t, nil
}
我得到的确切错误是
panic:sql:列索引6扫描错误,名称“ sdate”:null: 无法将类型[] uint8扫描为null。时间:[50 48 49 56 45 49 50 45 48 55 32 48 50 58 48 56 58 53 49]
语法明智地,查询工作正常,当我在sql工作台中运行它时得到结果。我还尝试了其中一个链接所建议的ParseTime = true。
答案 0 :(得分:1)
尝试对包“ database / sql”中的null值使用特殊类型
例如,当db中text或varchar可以为null时,请将sql.NullString用作var类型。
答案 1 :(得分:1)
如上所述,我对“日期”列进行了空处理
// NullTime defining nullTime
type NullTime mysql.NullTime
// Scan implements the Scanner interface for NullTime
func (nt *NullTime) Scan(value interface{}) error {
var t mysql.NullTime
if err := t.Scan(value); err != nil {
return err
}
// if nil then make Valid false
if reflect.TypeOf(value) == nil {
*nt = NullTime{t.Time, false}
} else {
*nt = NullTime{t.Time, true}
}
并更改结构
type Trip struct {
ID int `db:"id"`
Type int `db:"type"`
DID int `db:"did"`
DUID int `db:"duid"`
VID int `db:"vid"`
Sts string `db:"sts"`
AM int `db:"am"`
Sdate NullTime `db:"sdate"`
}
因此解决方案不仅是定义用于处理null的结构,而且还实现了扫描程序接口。