api/vendor/xorm.io/core
konrad caf91d1904 Update xorm to use the new import path (#133)
Fix ineffassign

Fix getting all labels including the ones not associated to a task

Signed-off-by: kolaente <k@knt.li>

Fix logging sql queries

Signed-off-by: kolaente <k@knt.li>

Start fixing getting all labels

Update xormigrate

Update xorm to use the new import path

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: vikunja/api#133
2020-02-14 16:34:25 +00:00
..
.drone.yml Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
.gitignore Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
LICENSE Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
README.md Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
benchmark.sh Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
cache.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
column.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
converstion.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
db.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
dialect.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
driver.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
error.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
filter.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
go.mod Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
go.sum Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
ilogger.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
index.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
mapper.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
pk.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
rows.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
scan.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
stmt.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
table.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
tx.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00
type.go Update xorm to use the new import path (#133) 2020-02-14 16:34:25 +00:00

README.md

Core is a lightweight wrapper of sql.DB.

Build Status Test Coverage 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)