Note
This is a pr-maintained fork from the original repo to keep some maintanance
Quick dating the lib:
- 🧐 What is sqlx?
sqlx is a library which provides a set of extensions on go's standarddatabase/sql
library. - 🚀 Why use sqlx?
Marshal rows into Structs, Named Prepared Statements,Get
andSelect
to go quickly from query to struct/slice - 🤝🏻 comapitble with the native packages?
sqlx leaves the underlying interfaces untouched and just superset on the standard ones
go get github.com/go-sqlx/sqlx
Jmoirons version 1.3.5 is equal with our version 1.3.6
⚠️ not the newest version, but from there you can migrate up
(old releases won't work of this repo and are just here for documentation purposes)
module ...
go 1.20
+ replace github.com/jmoiron/sqlx v1.3.5 => github.com/go-sqlx/sqlx v1.3.6
require(
...
)