emahiro/b.log

Drastically Repeat Yourself !!!!

2020-09-07から1日間の記事一覧

MySQL Driver で time.Time 型をパースする

go

以下のような Struct を考える。 type User struct { ID int64 Name String CreatedAt time.Time UpdatedAt time.Time } time.Time の時刻型をもつフィールドがある時、MySQL の時刻型のカラムをそのまま Scan しようとすると以下のエラーが出る。 sql: Scan…