Michael Penick

Results 74 comments of Michael Penick

@absurdfarce It's because the existing logic returns the error instead of setting `err` which causes the defer not to close the connection.

What about adding a method to the `Scanner` interface? ```go type Scanner interface { // ... IsNull(columnIndex int) (bool, error) } ``` or even ```go type Scanner interface { //...