Working with DB nulls in Golang

Thu, Apr 7, 2016 2-minute read

This post shows how to marshall NULL values from the database into Go struct and how to avoid mistakes during fetching optional values with SELECT query. I’ll show standard types sql.NullString, sql.NullInt64, etc types.

Customer table example

Customer table has mandatory ID and Email fields and optional Phone(string)/Age(int). I will show you a basic code how to fetch Customer by Email, marshall data into Go struct.

Error

Now let’s imagine that our Customer has an empty Phone (NULL in the DB), in this case SQL driver will fail to marshall DB NULL into string with the following error:

sql: Scan error on column index 1: unsupported driver -> Scan pair: <nil> -> *string

When you skip this error you will have incorrect data in Customer object, for example if Age is not NULL it will be marshalled into Phone field.

sql.NullString, sql.NullInt64, sql.NullFloat64, sql.NullBool

Standard sql package has 4 types for nullable data. With this only one change below error will be solved:

Retrieve value from sql.NullString

The sql.Null[String,Int64,Float64,Bool] types have two fields: a typed value and a boolean Valid. You can use the typed value to get either the value that’s been set, or the type’s “zero value” if it hasn’t been set. You can get customer’s phone number with the following code now: