11# sqlx
22
3- [ ![ Build Status ] ( https://travis-ci .org/jmoiron/sqlx.svg?branch=master )] ( https://travis-ci.org/jmoiron/sqlx ) [ ![ Coverage Status ] ( https://coveralls.io/repos/ github/jmoiron/sqlx/badge.svg?branch=master )] ( https://coveralls.io/github/jmoiron/ sqlx?branch=master ) [ ![ Godoc ] ( http://img.shields.io/badge/godoc-reference-blue. svg?style=flat )] ( https://godoc.org /github.com/jmoiron /sqlx ) [ ![ license ] ( http://img.shields.io/badge/license-MIT-red.svg?style=flat )] ( https://raw.githubusercontent.com/jmoiron/sqlx/master/LICENSE )
3+ [ ![ GoDoc ] ( https://godoc .org/github.com/bitbus/ sqlx?status. svg )] ( https://pkg.go.dev /github.com/bitbus /sqlx )
44
55sqlx is a library which provides a set of extensions on go's standard
66` database/sql ` library. The sqlx versions of ` sql.DB ` , ` sql.TX ` , ` sql.Stmt ` ,
@@ -14,12 +14,17 @@ Major additional concepts are:
1414* Named parameter support including prepared statements
1515* ` Get ` and ` Select ` to go quickly from query to struct/slice
1616
17- In addition to the [ godoc API documentation] ( http://godoc.org/github.com/jmoiron /sqlx ) ,
17+ In addition to the [ godoc API documentation] ( http://godoc.org/github.com/bitbus /sqlx ) ,
1818there is also some [ user documentation] ( http://jmoiron.github.io/sqlx/ ) that
1919explains how to use ` database/sql ` along with sqlx.
2020
2121## Recent Changes
2222
23+ 1.5.0
24+ - add ` With/WithTx/Withx/WithTxx ` function for ` Conn ` /` DB `
25+ - add ` InExec/MustInExec/InGet/InSelect ` help function
26+ - add ` InExec/MustInExec/InGet/InSelect ` method for ` DB ` /` Tx `
27+
23281.3.0:
2429
2530* ` sqlx.DB.Connx(context.Context) *sqlx.Conn `
@@ -46,7 +51,7 @@ will get major version number bumps.
4651
4752## install
4853
49- go get github.com/jmoiron /sqlx
54+ go get github.com/bitbus /sqlx
5055
5156## issues
5257
@@ -64,7 +69,7 @@ to give columns distinct names, `rows.Scan` to scan them manually, or
6469## usage
6570
6671Below is an example which shows some common use cases for sqlx. Check
67- [ sqlx_test.go] ( https://github.com/jmoiron /sqlx/blob/master/sqlx_test.go ) for more
72+ [ sqlx_test.go] ( https://github.com/bitbus /sqlx/blob/master/sqlx_test.go ) for more
6873usage.
6974
7075
@@ -77,7 +82,7 @@ import (
7782 " log"
7883
7984 _ " github.com/lib/pq"
80- " github.com/jmoiron /sqlx"
85+ " github.com/bitbus /sqlx"
8186)
8287
8388var schema = `
0 commit comments