
Package sqlstruct provides some convenience functions for using structs with the go standard library's database/sql package.
the package matches struct field names to sql query column names. a field can also specify a matching column with "sql" tag, if it's different from field name. unexported fields or fields marked with `sql:"-"` are ignored, just like with "encoding/json" package.