Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Bool boolType
Functions ¶
func ConvertAssign ¶
func ConvertAssign(src, dest interface{}) error
convertAssign copies to dest the value in src, converting it if possible. An error is returned if the copy would result in loss of information. dest should be a pointer type.
func GenerateRandomID ¶
func GenerateRandomID() string
func SignatureMap ¶
Types ¶
type RawBytes ¶
type RawBytes []byte
RawBytes is a byte slice that holds a reference to memory owned by the database itself. After a Scan into a RawBytes, the slice is only valid until the next call to Next, Scan, or Close.
type Scanner ¶
type Scanner interface { // Scan assigns a value from a database driver. // // The src value will be of one of the following types: // // int64 // float64 // bool // []byte // string // time.Time // nil - for NULL values // // An error should be returned if the value cannot be stored // without loss of information. // // Reference types such as []byte are only valid until the next call to Scan // and should not be retained. Their underlying memory is owned by the driver. // If retention is necessary, copy their values before the next call to Scan. Scan(src interface{}) error }
Click to show internal directories.
Click to hide internal directories.