1 Star 1 Fork 0

tdus / godror

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stmt_go11.go 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
// +build !go1.13
// Copyright 2020 The Godror Authors
//
//
// SPDX-License-Identifier: UPL-1.0 OR Apache-2.0
package godror
import (
"database/sql/driver"
"fmt"
"time"
)
// NullTime represents a time.Time that may be null. NullTime implements the Scanner interface so it can be used as a scan destination, similar to NullString.
//
// Copied from Go 1.13
type NullTime struct {
Time time.Time
Valid bool // Valid is true if Time is not NULL
}
// Scan implements the Scanner interface.
//
// Copied from Go 1.13
func (n *NullTime) Scan(value interface{}) error {
if value == nil {
n.Time, n.Valid = time.Time{}, false
return nil
}
n.Valid = true
switch x := value.(type) {
case time.Time:
n.Time = x
default:
return fmt.Errorf("unsupported Scan, storing driver.Value type %T into type %T", value, &n.Time)
}
return nil
}
// Value implements the driver Valuer interface.
//
// Copied from Go 1.13
func (n NullTime) Value() (driver.Value, error) {
if !n.Valid {
return nil, nil
}
return n.Time, nil
}
1
https://gitee.com/tdus/godror.git
git@gitee.com:tdus/godror.git
tdus
godror
godror
master

搜索帮助