Home | History | Annotate | Download | only in sql

Lines Matching full:nullstring

70 // NullString represents a string that may be null.
71 // NullString implements the Scanner interface so
74 // var s NullString
83 type NullString struct {
89 func (ns *NullString) Scan(value interface{}) error {
99 func (ns NullString) Value() (driver.Value, error) {
108 // it can be used as a scan destination, similar to NullString.
134 // it can be used as a scan destination, similar to NullString.
160 // it can be used as a scan destination, similar to NullString.