go-ozzo / ozzo-dbx

A Go (golang) package that enhances the standard database/sql package by providing powerful data retrieval methods as well as DB-agnostic query building capabilities.
MIT License
636 stars 91 forks source link

[]string populate #7

Closed kolkov closed 8 years ago

kolkov commented 8 years ago

How to properly populate []string from:

SELECT `name` FROM `users`
qiangxue commented 8 years ago

This is not currently supported. You would have to call All() or do for-loop to populate it.

kolkov commented 8 years ago

Thanks, Qiang!