Lightweight & Compitable wrapper of database/sql
This repository has been archived on 2020-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2016-02-19 17:23:26 +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 use gob to instead json to store pk & added json type 2015-04-01 16:16:22 +08:00
column.go Merge branch 'master' of github.com:go-xorm/core 2016-02-03 11:10:35 +08:00
converstion.go init core after sperated repository 2014-04-08 20:57:04 +08:00
db_test.go added QueryMap QueryStruct and etc. for Row 2016-01-08 14:33:03 +08:00
db.go bug fixed go-xorm/xorm#357 2016-02-19 17:23:00 +08:00
dialect.go improved logging 2016-02-16 17:14:10 +08:00
driver.go add RegisteredDriverSize() 2014-04-16 01:11:50 +08:00
error.go bug fixed go-xorm/xorm#357 2016-02-19 17:23:00 +08:00
filter.go add SeqFilter 2014-04-11 23:32:10 +08:00
ilogger.go improved logging 2016-02-16 17:14:10 +08:00
index.go add isregular for index 2015-02-17 15:00:51 +08:00
LICENSE include copyright name + email 2015-09-04 12:26:30 -04:00
mapper_test.go Make initialisms configurable 2015-01-20 17:11:10 +02:00
mapper.go Merge branch 'master' of github.com:go-xorm/core 2015-02-12 14:50:58 +08:00
pk_test.go bug fixed for PK marshal & unmarshl 2015-03-14 22:16:36 +08:00
pk.go bug fixed for PK marshal & unmarshl 2015-03-14 22:16:36 +08:00
README.md improved readme 2015-02-25 16:01:40 +08:00
scan.go added QueryMap QueryStruct and etc. for Row 2016-01-08 14:33:03 +08:00
table.go add columntype method for table 2015-02-23 00:00:10 +08:00
type.go support jsonb 2016-02-18 14:48:26 +08:00

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)