Accessing PostgreSQL databases in Go

4 · Eli Bendersky · July 17, 2021, 1:24 p.m.
This post discusses some options for accessing PostgreSQL databases from Go. I'll only be covering low-level packages that provide access to the underlying database; this post is not about ORMs, which were covered earlier in this blog. The full source code accompanying this post is on GitHub. We're going to …...