I recommend this excellent documentation to get started:

http://jmoiron.github.io/sqlx/

The docs are from the sqlx package, but they do a great job of explaining
the standard library functionality first. You can just stop reading after
the beginning.

Also, unless I'm missing something, you're *much* better off starting off
with PostgreSQL or (if you must), MySQL. They have great drivers:

https://github.com/lib/pq
https://github.com/go-sql-driver/mysql

Using sqlite3 is more complicated in Go, because you'd have to also import
a sqlite3 library which probably requires cgo.

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to