One of the great things about the Go standard library is how easy it is to create a sophisticated tool using a small amount of code. In this entry, I will explain how to make a variable-length random string generator that can support any Unicode character. You can find the final result on Github or… Continue reading Go, create a Unicode random string generator.
Category: Go
Go SQL error “converting NULL to string is unsupported”
Go is a strongly typed programming language, and many SQL databases can also support unknown values. These values can lead to complications in Go when it encounters unexpected results such as NULL (unknown) for an empty string.