I'm new to Go and I noticed somewhat of an aversion toward ORMs as all of the database related packages I've found are more like function wrappers for SQL queries. I know the limitations included in O/R mapping, but I feel it provides an effective layer of abstraction and flexibility to my code. So I went about writing a simple proof of concept to see how it could be done in Go.
It's still
VERY early in the process as I've only implemented
VERY basic MySQL "insert" support, but I'd like to get some general feedback from the more experienced community members. What I'd really like feedback on is "roadmap features by example" since they're ins't much functional code to play with.
Go easy on me. I'm a young, idealistic and eager Go noob ;)