SQLVal represents a single value.
| 2165 | |
| 2166 | // SQLVal represents a single value. |
| 2167 | type SQLVal struct { |
| 2168 | Type ValType |
| 2169 | Val string |
| 2170 | } |
| 2171 | |
| 2172 | // NewStrVal builds a new StrVal. |
| 2173 | func NewStrVal(in string) *SQLVal { |
nothing calls this directly
no outgoing calls
no test coverage detected