[go-nuts] State of the database drivers in go

2017-01-12 Thread Daniel Theophanes
I know drivers for postgesql, MySQL, Ms SQL server, and Oracle are maintained. -- 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+unsubscr...@googlegroup

Re: [go-nuts] State of the database drivers in go

2017-01-12 Thread snmed
Thank you Josh for your reply. Do you have any experience with this driver and do you know a reliable Nosql Db Driver (Document Based)? Are the MongoDB Driver mgo for production ready? Cheers snmed Am Donnerstag, 12. Januar 2017 16:04:31 UTC+1 schrieb Josh Kamau: > > This https://github.com/lib/

Re: [go-nuts] State of the database drivers in go

2017-01-12 Thread Josh Kamau
This https://github.com/lib/pq which is the postgres driver has commits in the last 15 days. Josh On Thu, Jan 12, 2017 at 11:22 AM, snmed wrote: > Dear all > > I'm planning my next project which is a data centric application with use > of at least one rdbms and one nosql database. > So far i u

[go-nuts] State of the database drivers in go

2017-01-12 Thread snmed
Dear all I'm planning my next project which is a data centric application with use of at least one rdbms and one nosql database. So far i used go only for some small command line tools, but i'm overwhelmed by the clean and nice syntax. So i was looking for database support in go and stumbled ove