lbry.go/README.md

58 lines
2.9 KiB
Markdown
Raw Normal View History

2014-08-31 10:28:34 +02:00
## null [![GoDoc](https://godoc.org/github.com/guregu/null?status.svg)](https://godoc.org/github.com/guregu/null) [![Coverage](http://gocover.io/_badge/github.com/guregu/null)](http://gocover.io/github.com/guregu/null)
`import "gopkg.in/guregu/null.v2"`
2014-09-01 07:38:26 +02:00
2014-09-01 20:33:18 +02:00
null is a library with reasonable options for dealing with nullable SQL and JSON values
2014-08-28 17:11:18 +02:00
There are two packages: `null` and its subpackage `zero`.
2014-08-31 10:30:01 +02:00
Types in `null` will only be considered null on null input, and will JSON encode to `null`. If you need zero and null be considered separate values, use these.
2014-08-31 10:30:01 +02:00
2014-09-03 02:40:33 +02:00
Types in `zero` are treated like zero values in Go: blank string input will produce a null `zero.String`, and null Strings will JSON encode to `""`. If you need zero and null treated the same, use these.
2014-08-31 10:30:01 +02:00
2014-08-31 10:36:30 +02:00
All types implement `sql.Scanner` and `driver.Valuer`, so you can use this library in place of `sql.NullXXX`. All types also implement: `encoding.TextMarshaler`, `encoding.TextUnmarshaler`, `json.Marshaler`, and `json.Unmarshaler`.
2014-08-31 10:28:34 +02:00
#### zero.String
2014-08-31 10:36:30 +02:00
A nullable string.
2014-08-29 03:29:17 +02:00
2014-08-31 10:28:34 +02:00
Will marshal to a blank string if null. Blank string input produces a null String. In other words, null values and empty values are considered equivalent. Can unmarshal from `sql.NullString` JSON input.
#### zero.Int
2014-08-31 10:28:34 +02:00
A nullable int64.
Will marshal to 0 if null. Blank string or 0 input produces a null Int. In other words, null values and empty values are considered equivalent. Can unmarshal from `sql.NullInt64` JSON input.
2014-08-29 03:29:17 +02:00
#### zero.Float
2014-09-01 06:46:40 +02:00
A nullable float64.
Will marshal to 0 if null. Blank string or 0 input produces a null Float. In other words, null values and empty values are considered equivalent. Can unmarshal from `sql.NullFloat64` JSON input.
#### zero.Bool
2014-09-01 06:46:40 +02:00
A nullable bool.
Will marshal to false if null. Blank string or false input produces a null Float. In other words, null values and empty values are considered equivalent. Can unmarshal from `sql.NullBool` JSON input.
#### null.String
2014-08-31 10:28:34 +02:00
An even nuller nullable string.
2014-08-29 03:29:17 +02:00
Unlike `zero.String`, `null.String` will marshal to null if null. Zero (blank) input will not produce a null String. Can unmarshal from `sql.NullString` JSON input.
2014-08-30 17:03:04 +02:00
#### null.Int
2014-08-31 10:28:34 +02:00
An even nuller nullable int64.
2014-08-30 17:03:04 +02:00
Unlike `zero.Int`, `null.Int` will marshal to null if null. Zero input will not produce a null Int. Can unmarshal from `sql.NullInt64` JSON input.
2014-08-30 17:03:04 +02:00
#### null.Float
2014-09-01 06:46:40 +02:00
An even nuller nullable float64.
Unlike `zero.Float`, `null.Float` will marshal to null if null. Zero input will not produce a null Float. Can unmarshal from `sql.NullFloat64` JSON input.
2014-09-01 06:46:40 +02:00
#### null.Bool
2014-09-01 06:46:40 +02:00
An even nuller nullable float64.
Unlike `zero.Bool`, `null.Bool` will marshal to null if null. False input will not produce a null Bool. Can unmarshal from `sql.NullBool` JSON input.
2014-09-01 06:46:40 +02:00
2014-08-29 03:29:17 +02:00
### Bugs
2015-01-21 03:33:38 +01:00
`json`'s `",omitempty"` struct tag does not work correctly right now. It will never omit a null or empty String. This should be [fixed eventually](https://github.com/golang/go/issues/4357).
2014-08-29 03:29:17 +02:00
### License
BSD