Thanks Konstantin,
This is the kind of feedback I was looking for! I forgot to include the
link to my github repo in my original post (did you find it anyway?) so I'm
not sure if you read my README. I took a look at sqlx before writing sqlez,
and while sqlx is a great improvement over the basic
Totally agree.
On Sunday, March 5, 2017 at 9:10:26 AM UTC-5, Konstantin Khomoutov wrote:
>
> On Sun, 5 Mar 2017 12:42:24 +0200
> Janne Snabb > wrote:
>
> > > After seeing a need for simplifying SQL databases in Go, I have
> > > written a new package that makes it very easy to do basic SELECT,
On Sun, 5 Mar 2017 12:42:24 +0200
Janne Snabb wrote:
> > After seeing a need for simplifying SQL databases in Go, I have
> > written a new package that makes it very easy to do basic SELECT,
> > INSERT, and UPDATE database operations. Essentially you define a
> > struct that corresponds with the
Looks similar to https://github.com/jmoiron/sqlx which is well
established. Might be a good idea to add a short summary of
differences/additional benefits compared to sqlx in README.
Janne Snabb
sn...@epipe.com
On 2017-03-05 01:36, jmacwhyte wrote:
> Hello all,
>
> After seeing a need for simpli
Hello all,
After seeing a need for simplifying SQL databases in Go, I have written a
new package that makes it very easy to do basic SELECT, INSERT, and UPDATE
database operations. Essentially you define a struct that corresponds with
the data in your database, and then you can simply pass that