gitea/vendor/xorm.io/core
Lunny Xiao aa9a99cf5f
Upgrade xorm to latest to fix insert issue bug (#8309)
* upgrade xorm to latest to fix insert issue bug

* add newissue unit tests

* update xorm version

* fix tests
2019-09-29 20:52:39 +08:00
..
.drone.yml Upgrade xorm to latest to fix insert issue bug (#8309) 2019-09-29 20:52:39 +08:00
.gitignore Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
LICENSE Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
README.md Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
benchmark.sh Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
cache.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
column.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
converstion.go Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
db.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
dialect.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
driver.go Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
error.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
filter.go Upgrade xorm to latest to fix insert issue bug (#8309) 2019-09-29 20:52:39 +08:00
go.mod Upgrade xorm to latest to fix insert issue bug (#8309) 2019-09-29 20:52:39 +08:00
go.sum Upgrade xorm to latest to fix insert issue bug (#8309) 2019-09-29 20:52:39 +08:00
ilogger.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
index.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
mapper.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
pk.go Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
rows.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
scan.go Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
stmt.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
table.go Retry create issue to cope with duplicate keys (#7898) 2019-08-26 22:17:23 -04:00
tx.go Fix error log when loading issues caused by a xorm bug (#7271) 2019-06-23 18:22:43 +03:00
type.go Upgrade xorm to latest to fix insert issue bug (#8309) 2019-09-29 20:52:39 +08:00

README.md

Core is a lightweight wrapper of sql.DB.

Build Status Go Report Card

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)