web-dev-qa-db-ja.com

Nullable Time.Golangの時間

データベースレコードを設定する構造体があり、datetime列の1つがnull値を許可します。

type Reminder struct {
    Id         int
    CreatedAt  time.Time
    RemindedAt *time.Time
    SenderId   int
    ReceiverId int
}

ポインターはnilになる可能性があるため、RemindedAtをポインターにしましたが、これにはAt変数の違いを知るためのコードが必要です。これを処理するよりエレガントな方法はありますか?

32
tlehman

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
}
60
Dmitri Goldring

Lib/pqのNullTimeの例が好きです。 NullTimeTimeのように扱うことができるように、このように調整しました...

type NullTime struct {
    time.Time
    Valid bool
}
6
FogleBird

また、go-sql-driverの実装も確認することをお勧めします。これは、基本的に上記の推奨事項と同じです。 https://godoc.org/github.com/go-sql-driver/mysql#NullTime

3
Steven Soroka

mysql.NullTimeが廃止されました https://github.com/go-sql-driver/mysql/issues/960 database/sqlにはNullTimeタイプがありますGo1.13以降、代わりに使用する必要があります https://github.com/golang/go/issues/30305

0
Andrey K.