Home | History | Annotate | Download | only in sql

Lines Matching defs:NullString

148 // NullString represents a string that may be null.
149 // NullString implements the Scanner interface so
152 // var s NullString
161 type NullString struct {
167 func (ns *NullString) Scan(value interface{}) error {
177 func (ns NullString) Value() (driver.Value, error) {
186 // it can be used as a scan destination, similar to NullString.
212 // it can be used as a scan destination, similar to NullString.
238 // it can be used as a scan destination, similar to NullString.