Michael Chinn
Results
1
issues of
Michael Chinn
[the go mysql driver](https://github.com/go-sql-driver/mysql/blob/master/fields.go) provides a very good mapping of database types to go types by doing `reflect.New(tp.ScanType()).Interface()` directly instead of manually mapping all integers to `sql.NullInt64`, strings to `sql.NullString`,...