I've poked around a lot in the database/sql package while writing modl and sqlx, and I try to answer as many sql related questions as I can in #go-nuts. Here are some questions I've seen about the Go's sql package: How can I scan into a struct? You can't. Quite a few third party libraries do, however, provide this. The tradeoff inherent in these libraries is that they all must use reflect and rows

