Categorygithub.com/go-sqlx/sqlx
repositorypackage
1.3.8
Repository: https://github.com/go-sqlx/sqlx.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

āš ļø This is a pr-maintained fork from the original repo to keep some maintanance

go/sqlx

Code-Testing

Quick dating the lib:

  • 🧐 What is sqlx?
    sqlx is a library which provides a set of extensions on go's standard database/sql library.
  • šŸš€ Why use sqlx?
    Marshal rows into Structs, Named Prepared Statements, Get and Select 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

install

Latest and Greatest

    go get github.com/go-sqlx/sqlx

Older Versions from jmoiron

Jmoirons version 1.3.5 is equal with our version 1.3.6
(old releases won't work of this repo and or 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(
        ...
    )