sqlx: general purpose extensions to golang’s database/sql

sqlx is a library which provides a set of extensions on go’s standard database/sql library. The sqlx versions of sql.DBsql.TXsql.Stmt, et al. all leave the underlying interfaces untouched, so that their interfaces are a superset on the standard ones. This makes it relatively painless to integrate existing codebases using database/sql with sqlx.

Publikováno v Go