Go to file
2016-11-12 11:45:55 +10:00
convert Add all additional types to zero package 2016-05-18 17:00:15 +10:00
.gitignore initial commit 2014-08-29 00:11:18 +09:00
bool.go Add byte type 2016-11-11 17:15:01 +10:00
bool_test.go Add byte type 2016-11-11 17:15:01 +10:00
byte.go Fix imports for v6 2016-11-12 11:45:55 +10:00
byte_test.go Add byte type 2016-11-11 17:15:01 +10:00
bytes.go Fix imports for v6 2016-11-12 11:45:55 +10:00
bytes_test.go Removed zero 2016-11-10 17:47:49 +10:00
float32.go Fix imports for v6 2016-11-12 11:45:55 +10:00
float32_test.go Add byte type 2016-11-11 17:15:01 +10:00
float64.go Add byte type 2016-11-11 17:15:01 +10:00
float64_test.go Add byte type 2016-11-11 17:15:01 +10:00
int.go Fix imports for v6 2016-11-12 11:45:55 +10:00
int8.go Fix imports for v6 2016-11-12 11:45:55 +10:00
int8_test.go Add byte type 2016-11-11 17:15:01 +10:00
int16.go Fix imports for v6 2016-11-12 11:45:55 +10:00
int16_test.go Add byte type 2016-11-11 17:15:01 +10:00
int32.go Fix imports for v6 2016-11-12 11:45:55 +10:00
int32_test.go Add byte type 2016-11-11 17:15:01 +10:00
int64.go Add byte type 2016-11-11 17:15:01 +10:00
int64_test.go Add byte type 2016-11-11 17:15:01 +10:00
int_test.go Add byte type 2016-11-11 17:15:01 +10:00
json.go Fix imports for v6 2016-11-12 11:45:55 +10:00
json_test.go Removed zero 2016-11-10 17:47:49 +10:00
LICENSE Update license and readme 2016-09-04 19:18:51 +10:00
README.md Update for v6 2016-11-12 11:40:19 +10:00
string.go Add byte type 2016-11-11 17:15:01 +10:00
string_test.go Fix all unmarshaljson funcs and all types 2016-11-11 01:00:05 +10:00
time.go Add byte type 2016-11-11 17:15:01 +10:00
time_test.go Add byte type 2016-11-11 17:15:01 +10:00
uint.go Fix imports for v6 2016-11-12 11:45:55 +10:00
uint8.go Fix imports for v6 2016-11-12 11:45:55 +10:00
uint8_test.go Add byte type 2016-11-11 17:15:01 +10:00
uint16.go Fix imports for v6 2016-11-12 11:45:55 +10:00
uint16_test.go Add byte type 2016-11-11 17:15:01 +10:00
uint32.go Fix imports for v6 2016-11-12 11:45:55 +10:00
uint32_test.go Add byte type 2016-11-11 17:15:01 +10:00
uint64.go Fix imports for v6 2016-11-12 11:45:55 +10:00
uint64_test.go Add byte type 2016-11-11 17:15:01 +10:00
uint_test.go Add byte type 2016-11-11 17:15:01 +10:00

null-extended GoDoc Coverage

import "gopkg.in/nullbio/null.v6"

null-extended is a library with reasonable options for dealing with nullable SQL and JSON values

There are two packages: null and its subpackage zero.

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.

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 "". Zero values of these types will be considered null to SQL. If you need zero and null treated the same, use these.

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, json.Unmarshaler and sql.Scanner.

null package

import "gopkg.in/nullbio/null.v6"

null.JSON

Nullable []byte.

Will marshal to JSON null if Invalid. []byte{} input will not produce an Invalid JSON, but []byte(nil) will. This should be used for storing raw JSON in the database.

Also has null.JSON.Marshal and null.JSON.Unmarshal helpers to marshal and unmarshal foreign objects.

null.Bytes

Nullable []byte.

Will marshal to JSON null if Invalid. []]byte{} input will not produce an Invalid Bytes, but []byte(nil) will. This should be used for storing binary data (bytea in PSQL for example) in the database.

null.String

Nullable string.

Marshals to JSON null if SQL source data is null. Zero (blank) input will not produce a null String. Can unmarshal from sql.NullString JSON input or string input.

null.Bool

Nullable bool.

Marshals to JSON null if SQL source data is null. False input will not produce a null Bool. Can unmarshal from sql.NullBool JSON input.

null.Time

Marshals to JSON null if SQL source data is null. Uses time.Time's marshaler. Can unmarshal from pq.NullTime and similar JSON input.

null.Float32

Nullable float32.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Float32. Can unmarshal from null.NullFloat32 JSON input.

null.Float64

Nullable float64.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Float64. Can unmarshal from sql.NullFloat64 JSON input.

null.Int

Nullable int.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Int. Can unmarshal from null.NullInt JSON input.

null.Int8

Nullable int8.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Int8. Can unmarshal from null.NullInt8 JSON input.

null.Int16

Nullable int16.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Int16. Can unmarshal from null.NullInt16 JSON input.

null.Int32

Nullable int32.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Int32. Can unmarshal from null.NullInt32 JSON input.

null.Int64

Nullable int64.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Int64. Can unmarshal from sql.NullInt64 JSON input.

null.Uint

Nullable uint.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Uint. Can unmarshal from null.NullUint JSON input.

null.Uint8

Nullable uint8.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Uint8. Can unmarshal from null.NullUint8 JSON input.

null.Uint16

Nullable uint16.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Uint16. Can unmarshal from null.NullUint16 JSON input.

null.Uint32

Nullable int32.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Uint32. Can unmarshal from null.NullUint32 JSON input.

null.Int64

Nullable uint64.

Marshals to JSON null if SQL source data is null. Zero input will not produce a null Uint64. Can unmarshal from null.NullUint64 JSON input.

Bugs

json's ",omitempty" struct tag does not work correctly right now. It will never omit a null or empty String. This might be fixed eventually.

License

BSD