--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/1c521514-d267-456c-a66a-e56544965fd3n%40googlegroups.com.
FWIW, things like `SELECT * FROM ...` are in my opinion a code smell: there are usually some (implicit) expectations on which columns will be returned in what order that'll break horribly if someone two departments removed decides "this table needs another column".
In my experience, it's almost always better to explicitly encode
queries (or build them with a query builder) than to build them
manually at run time.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/aa0085f1-7057-40fb-9539-3c133331e152n%40googlegroups.com.
-- . Gregor Best be...@pferdewetten.de