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 )
4-
5- sqlx is a library which provides a set of extensions on go's standard
3+ sqlx (forked from [ jmoiron/sqlx] ( https://github.com/jmoiron/sqlx ) ) is a library which provides a set of extensions on go's standard
64` database/sql ` library. The sqlx versions of ` sql.DB ` , ` sql.TX ` , ` sql.Stmt ` ,
75et al. all leave the underlying interfaces untouched, so that their interfaces
86are a superset on the standard ones. This makes it relatively painless to
@@ -14,7 +12,7 @@ Major additional concepts are:
1412* Named parameter support including prepared statements
1513* ` Get ` and ` Select ` to go quickly from query to struct/slice
1614
17- In addition to the [ godoc API documentation] ( http://godoc.org/github.com/jmoiron /sqlx ) ,
15+ In addition to the [ godoc API documentation] ( http://godoc.org/github.com/developersismedika /sqlx ) ,
1816there is also some [ user documentation] ( http://jmoiron.github.io/sqlx/ ) that
1917explains how to use ` database/sql ` along with sqlx.
2018
@@ -46,7 +44,7 @@ will get major version number bumps.
4644
4745## install
4846
49- go get github.com/jmoiron /sqlx
47+ go get github.com/developersismedika /sqlx
5048
5149## issues
5250
@@ -64,7 +62,7 @@ to give columns distinct names, `rows.Scan` to scan them manually, or
6462## usage
6563
6664Below 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
65+ [ sqlx_test.go] ( https://github.com/developersismedika /sqlx/blob/master/sqlx_test.go ) for more
6866usage.
6967
7068
@@ -77,7 +75,7 @@ import (
7775 " log"
7876
7977 _ " github.com/lib/pq"
80- " github.com/jmoiron /sqlx"
78+ " github.com/developersismedika /sqlx"
8179)
8280
8381var schema = `
0 commit comments