Lightweight & Compitable wrapper of database/sql
Go to file
Lunny Xiao 7d1d621d68
update drone
2019-06-20 11:36:10 +08:00
.circleci Add context support (#46) 2019-01-17 14:40:11 +08:00
.drone.yml update drone 2019-06-20 11:36:10 +08:00
.gitignore add set db to dialect 2014-04-18 18:39:59 +08:00
benchmark.sh init core after sperated repository 2014-04-08 20:57:04 +08:00
cache.go comment go lint 2019-06-20 09:10:01 +08:00
column.go Add context support (#46) 2019-01-17 14:40:11 +08:00
converstion.go Add context support (#46) 2019-01-17 14:40:11 +08:00
db_test.go fix bench tests (#47) 2019-01-17 14:47:46 +08:00
db.go comment go lint 2019-06-20 09:10:01 +08:00
dialect.go comment go lint 2019-06-20 09:10:01 +08:00
driver.go Add context support (#46) 2019-01-17 14:40:11 +08:00
error.go Add context support (#46) 2019-01-17 14:40:11 +08:00
filter.go Add context support (#46) 2019-01-17 14:40:11 +08:00
go.mod update drone 2019-06-20 09:13:29 +08:00
go.sum update drone 2019-06-20 09:13:29 +08:00
ilogger.go Add context support (#46) 2019-01-17 14:40:11 +08:00
index.go Add context support (#46) 2019-01-17 14:40:11 +08:00
LICENSE include copyright name + email 2015-09-04 12:26:30 -04:00
mapper_test.go Add context support (#46) 2019-01-17 14:40:11 +08:00
mapper.go Add context support (#46) 2019-01-17 14:40:11 +08:00
pk_test.go Add context support (#46) 2019-01-17 14:40:11 +08:00
pk.go Add context support (#46) 2019-01-17 14:40:11 +08:00
README.md add drone and update README 2019-06-19 17:40:11 +08:00
rows.go Add context support (#46) 2019-01-17 14:40:11 +08:00
scan.go Add context support (#46) 2019-01-17 14:40:11 +08:00
stmt.go Add context support (#46) 2019-01-17 14:40:11 +08:00
table_test.go Add context support (#46) 2019-01-17 14:40:11 +08:00
table.go Add context support (#46) 2019-01-17 14:40:11 +08:00
tx.go Add context support (#46) 2019-01-17 14:40:11 +08:00
type.go Add some missing MS SQL Server types: NChar, SmallDateTime, Money, SmallMoney (#45) 2019-01-17 15:33:21 +08:00

Core is a lightweight wrapper of sql.DB.

Build Status

Open

db, _ := core.Open(db, connstr)

SetMapper

db.SetMapper(SameMapper())

Scan usage

Scan

rows, _ := db.Query()
for rows.Next() {
    rows.Scan()
}

ScanMap

rows, _ := db.Query()
for rows.Next() {
    rows.ScanMap()

ScanSlice

You can use []string, [][]byte, []interface{}, []*string, []sql.NullString to ScanSclice. Notice, slice's length should be equal or less than select columns.

rows, _ := db.Query()
cols, _ := rows.Columns()
for rows.Next() {
    var s = make([]string, len(cols))
    rows.ScanSlice(&s)
}
rows, _ := db.Query()
cols, _ := rows.Columns()
for rows.Next() {
    var s = make([]*string, len(cols))
    rows.ScanSlice(&s)
}

ScanStruct

rows, _ := db.Query()
for rows.Next() {
    rows.ScanStructByName()
    rows.ScanStructByIndex()
}

Query usage

rows, err := db.Query("select * from table where name = ?", name)

user = User{
    Name:"lunny",
}
rows, err := db.QueryStruct("select * from table where name = ?Name",
            &user)

var user = map[string]interface{}{
    "name": "lunny",
}
rows, err = db.QueryMap("select * from table where name = ?name",
            &user)

QueryRow usage

row := db.QueryRow("select * from table where name = ?", name)

user = User{
    Name:"lunny",
}
row := db.QueryRowStruct("select * from table where name = ?Name",
            &user)

var user = map[string]interface{}{
    "name": "lunny",
}
row = db.QueryRowMap("select * from table where name = ?name",
            &user)

Exec usage

db.Exec("insert into user (`name`, title, age, alias, nick_name,created) values (?,?,?,?,?,?)", name, title, age, alias...)

user = User{
    Name:"lunny",
    Title:"test",
    Age: 18,
}
result, err = db.ExecStruct("insert into user (`name`, title, age, alias, nick_name,created) values (?Name,?Title,?Age,?Alias,?NickName,?Created)",
            &user)

var user = map[string]interface{}{
    "Name": "lunny",
    "Title": "test",
    "Age": 18,
}
result, err = db.ExecMap("insert into user (`name`, title, age, alias, nick_name,created) values (?Name,?Title,?Age,?Alias,?NickName,?Created)",
            &user)