Sin descripción

xormplus 608c49847e Add support for jsonb hace 9 años
.gitignore 9962f563c4 Initial commit hace 11 años
LICENSE 9962f563c4 Initial commit hace 11 años
README.md a2e615076f 初始化 hace 11 años
benchmark.sh a2e615076f 初始化 hace 11 años
cache.go a2e615076f 初始化 hace 11 años
column.go d5f7cf7805 bug fixed hace 10 años
config a2e615076f 初始化 hace 11 años
converstion.go a2e615076f 初始化 hace 11 años
db.go 2750e9842a add ToMapString method for rows and row hace 9 años
db_test.go 0911afc633 serious extends bug fixed & correct logger file path hace 10 años
description a2e615076f 初始化 hace 11 años
dialect.go 0911afc633 serious extends bug fixed & correct logger file path hace 10 años
driver.go a2e615076f 初始化 hace 11 años
error.go 0911afc633 serious extends bug fixed & correct logger file path hace 10 años
filter.go a2e615076f 初始化 hace 11 años
ilogger.go 0911afc633 serious extends bug fixed & correct logger file path hace 10 años
index.go a2e615076f 初始化 hace 11 años
mapper.go a2e615076f 初始化 hace 11 años
mapper_test.go a2e615076f 初始化 hace 11 años
pk.go a2e615076f 初始化 hace 11 años
pk_test.go a2e615076f 初始化 hace 11 años
rows.go 2750e9842a add ToMapString method for rows and row hace 9 años
table.go 07dea73653 Remove allocations from GetColumn & GetColumnIdx hace 9 años
type.go 608c49847e Add support for jsonb hace 9 años

README.md

Core is a lightweight wrapper of sql.DB.

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)