Add Values functions AddSQLNullString decodes the JSON value within an object or an array to qn *sql.NullString
(v *sql.NullString)
| 78 | |
| 79 | // AddSQLNullString decodes the JSON value within an object or an array to qn *sql.NullString |
| 80 | func (dec *Decoder) AddSQLNullString(v *sql.NullString) error { |
| 81 | return dec.SQLNullString(v) |
| 82 | } |
| 83 | |
| 84 | // SQLNullString decodes the JSON value within an object or an array to an *sql.NullString |
| 85 | func (dec *Decoder) SQLNullString(v *sql.NullString) error { |
nothing calls this directly
no test coverage detected