データベースレコードを設定する構造体があり、datetime列の1つがnull値を許可します。
type Reminder struct {
Id int
CreatedAt time.Time
RemindedAt *time.Time
SenderId int
ReceiverId int
}
ポインターはnil
になる可能性があるため、RemindedAt
をポインターにしましたが、これにはAt
変数の違いを知るためのコードが必要です。これを処理するよりエレガントな方法はありますか?
pq.NullTime
を使用できます。
Githubの lib/pq から:
type NullTime struct {
Time time.Time
Valid bool // Valid is true if Time is not NULL
}
// Scan implements the Scanner interface.
func (nt *NullTime) Scan(value interface{}) error {
nt.Time, nt.Valid = value.(time.Time)
return nil
}
// Value implements the driver Valuer interface.
func (nt NullTime) Value() (driver.Value, error) {
if !nt.Valid {
return nil, nil
}
return nt.Time, nil
}
Lib/pqのNullTime
の例が好きです。 NullTime
をTime
のように扱うことができるように、このように調整しました...
type NullTime struct {
time.Time
Valid bool
}
また、go-sql-driverの実装も確認することをお勧めします。これは、基本的に上記の推奨事項と同じです。 https://godoc.org/github.com/go-sql-driver/mysql#NullTime
mysql.NullTimeが廃止されました https://github.com/go-sql-driver/mysql/issues/960 database/sqlにはNullTimeタイプがありますGo1.13以降、代わりに使用する必要があります https://github.com/golang/go/issues/30305