Skip to content

Initial release

Compare
Choose a tag to compare
@vgarvardt vgarvardt released this 26 Feb 20:09
· 54 commits to master since this release
0ce0bd3

The following adapter interface with pgx.Conn, pgx.ConnPool, sql, and sqlx implementations:

type Adapter interface {
	Exec(query string, args ...interface{}) error
	SelectOne(dst interface{}, query string, args ...interface{}) error
}