Value can store any SQL value. NULL is stored as nil.
| 38 | |
| 39 | // Value can store any SQL value. NULL is stored as nil. |
| 40 | type Value struct { |
| 41 | Inner InnerValue |
| 42 | } |
| 43 | |
| 44 | // Numeric represents non-fractional SQL number. |
| 45 | type Numeric []byte |
no outgoing calls
no test coverage detected