Oct 26, 2020

[Go] null String type (or any type that is null)

Reference:
https://golang.org/src/database/sql/sql.go?s=4943:5036#L178

type NullString struct {
	String string
	Valid  bool // Valid is true if String is not NULL
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.