xorm/README.md

316 lines
9.5 KiB
Markdown
Raw Normal View History

2014-04-11 09:16:43 +00:00
[中文](https://github.com/go-xorm/xorm/blob/master/README_CN.md)
2014-01-07 09:21:02 +00:00
Xorm is a simple and powerful ORM for Go.
2017-05-27 02:56:35 +00:00
[![CircleCI](https://circleci.com/gh/go-xorm/xorm.svg?style=shield)](https://circleci.com/gh/go-xorm/xorm) [![codecov](https://codecov.io/gh/go-xorm/xorm/branch/master/graph/badge.svg)](https://codecov.io/gh/go-xorm/xorm)
2017-06-12 03:16:18 +00:00
[![](https://goreportcard.com/badge/github.com/go-xorm/xorm)](https://goreportcard.com/report/github.com/go-xorm/xorm)
[![Join the chat at https://img.shields.io/discord/323460943201959939.svg](https://img.shields.io/discord/323460943201959939.svg)](https://discord.gg/HuR2CF3)
2013-11-22 01:20:41 +00:00
2014-01-07 09:21:02 +00:00
# Features
2013-11-22 01:20:41 +00:00
* Struct <-> Table Mapping Support
2013-09-29 14:39:59 +00:00
2013-11-22 01:20:41 +00:00
* Chainable APIs
2015-12-30 08:49:46 +00:00
2013-11-22 01:20:41 +00:00
* Transaction Support
2014-01-07 09:21:02 +00:00
2013-11-22 05:05:10 +00:00
* Both ORM and raw SQL operation Support
2013-11-22 01:20:41 +00:00
2014-04-15 12:09:20 +00:00
* Sync database schema Support
2013-11-22 01:20:41 +00:00
2013-11-22 05:05:10 +00:00
* Query Cache speed up
2013-11-22 01:20:41 +00:00
2014-05-02 03:11:19 +00:00
* Database Reverse support, See [Xorm Tool README](https://github.com/go-xorm/cmd/blob/master/README.md)
2013-11-22 01:20:41 +00:00
* Simple cascade loading support
* Optimistic Locking support
2016-09-18 01:17:03 +00:00
* SQL Builder support via [github.com/go-xorm/builder](https://github.com/go-xorm/builder)
2014-01-07 09:21:02 +00:00
# Drivers Support
Drivers for Go's sql package which currently support database/sql includes:
2013-11-22 05:05:10 +00:00
* Mysql: [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql)
2014-01-07 09:21:02 +00:00
2017-08-27 13:58:05 +00:00
* MyMysql: [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql/tree/master/godrv)
2014-01-07 09:21:02 +00:00
* Postgres: [github.com/lib/pq](https://github.com/lib/pq)
2015-09-24 14:49:14 +00:00
* Tidb: [github.com/pingcap/tidb](https://github.com/pingcap/tidb)
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
2014-07-01 07:38:05 +00:00
* MsSql: [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
2015-04-01 13:53:17 +00:00
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (experiment)
2013-11-22 01:20:41 +00:00
# Changelog
2017-07-14 01:20:13 +00:00
* **v0.6.3**
* merge tests to main project
* add `Exist` function
* add `SumInt` function
* Mysql now support read and create column comment.
* fix time related bugs.
* fix some other bugs.
2017-04-01 02:35:27 +00:00
* **v0.6.2**
* refactor tag parse methods
* add Scan features to Get
* add QueryString method
* **v0.6.0**
* remove support for ql
2016-09-17 12:12:24 +00:00
* add query condition builder support via [github.com/go-xorm/builder](https://github.com/go-xorm/builder), so `Where`, `And`, `Or`
methods can use `builder.Cond` as parameter
* add Sum, SumInt, SumInt64 and NotIn methods
* some bugs fixed
2016-04-27 12:08:35 +00:00
[More changes ...](https://github.com/go-xorm/manual-en-US/tree/master/chapter-16)
2014-01-07 09:21:02 +00:00
2013-12-01 03:08:17 +00:00
# Installation
go get github.com/go-xorm/xorm
2014-01-07 09:21:02 +00:00
2013-11-22 05:05:10 +00:00
# Documents
2014-10-19 06:41:47 +00:00
* [Manual](http://xorm.io/docs)
* [GoDoc](http://godoc.org/github.com/go-xorm/xorm)
2014-01-07 09:21:02 +00:00
* [GoWalker](http://gowalker.org/github.com/go-xorm/xorm)
2015-12-30 08:49:46 +00:00
# Quick Start
2015-12-30 08:58:58 +00:00
* Create Engine
2015-12-30 08:49:46 +00:00
```Go
engine, err := xorm.NewEngine(driverName, dataSourceName)
```
2015-12-30 08:58:58 +00:00
* Define a struct and Sync2 table struct to database
2015-12-30 08:49:46 +00:00
```Go
type User struct {
Id int64
Name string
Salt string
Age int
Passwd string `xorm:"varchar(200)"`
Created time.Time `xorm:"created"`
Updated time.Time `xorm:"updated"`
}
err := engine.Sync2(new(User))
```
2017-04-01 02:35:27 +00:00
* `Query` runs a SQL string, the returned results is `[]map[string][]byte`, `QueryString` returns `[]map[string]string`.
2015-12-30 08:49:46 +00:00
```Go
results, err := engine.Query("select * from user")
2017-04-01 02:35:27 +00:00
results, err := engine.QueryString("select * from user")
2015-12-30 08:49:46 +00:00
```
2017-08-02 02:39:46 +00:00
* `Execute` runs a SQL string, it returns `affected` and `error`
2015-12-30 08:49:46 +00:00
```Go
affected, err := engine.Exec("update user set age = ? where name = ?", age, name)
```
2017-04-01 02:35:27 +00:00
* `Insert` one or multiple records to database
2015-12-30 08:49:46 +00:00
```Go
affected, err := engine.Insert(&user)
// INSERT INTO struct () values ()
affected, err := engine.Insert(&user1, &user2)
// INSERT INTO struct1 () values ()
// INSERT INTO struct2 () values ()
affected, err := engine.Insert(&users)
// INSERT INTO struct () values (),(),()
affected, err := engine.Insert(&user1, &users)
// INSERT INTO struct1 () values ()
// INSERT INTO struct2 () values (),(),()
```
2015-12-30 08:58:58 +00:00
* Query one record from database
2015-12-30 08:49:46 +00:00
```Go
has, err := engine.Get(&user)
// SELECT * FROM user LIMIT 1
has, err := engine.Where("name = ?", name).Desc("id").Get(&user)
// SELECT * FROM user WHERE name = ? ORDER BY id DESC LIMIT 1
2017-04-01 02:09:00 +00:00
var name string
has, err := engine.Where("id = ?", id).Cols("name").Get(&name)
// SELECT name FROM user WHERE id = ?
var id int64
has, err := engine.Where("name = ?", name).Cols("id").Get(&id)
// SELECT id FROM user WHERE name = ?
var valuesMap = make(map[string]string)
has, err := engine.Where("id = ?", id).Get(&valuesMap)
// SELECT * FROM user WHERE id = ?
var valuesSlice = make([]interface{}, len(cols))
has, err := engine.Where("id = ?", id).Cols(cols...).Get(&valuesSlice)
// SELECT col1, col2, col3 FROM user WHERE id = ?
2015-12-30 08:49:46 +00:00
```
2017-07-14 01:20:13 +00:00
* Check if one record exist on table
```Go
has, err := testEngine.Exist(new(RecordExist))
// SELECT * FROM record_exist LIMIT 1
has, err = testEngine.Exist(&RecordExist{
Name: "test1",
})
// SELECT * FROM record_exist WHERE name = ? LIMIT 1
has, err = testEngine.Where("name = ?", "test1").Exist(&RecordExist{})
// SELECT * FROM record_exist WHERE name = ? LIMIT 1
has, err = testEngine.SQL("select * from record_exist where name = ?", "test1").Exist()
// select * from record_exist where name = ?
has, err = testEngine.Table("record_exist").Exist()
// SELECT * FROM record_exist LIMIT 1
has, err = testEngine.Table("record_exist").Where("name = ?", "test1").Exist()
// SELECT * FROM record_exist WHERE name = ? LIMIT 1
```
2015-12-30 08:58:58 +00:00
* Query multiple records from database, also you can use join and extends
2015-12-30 08:49:46 +00:00
```Go
2015-12-30 08:58:58 +00:00
var users []User
err := engine.Where("name = ?", name).And("age > 10").Limit(10, 0).Find(&users)
// SELECT * FROM user WHERE name = ? AND age > 10 limit 0 offset 10
type Detail struct {
Id int64
UserId int64 `xorm:"index"`
}
type UserDetail struct {
User `xorm:"extends"`
Detail `xorm:"extends"`
}
var users []UserDetail
err := engine.Table("user").Select("user.*, detail.*")
Join("INNER", "detail", "detail.user_id = user.id").
Where("user.name = ?", name).Limit(10, 0).
Find(&users)
// SELECT user.*, detail.* FROM user INNER JOIN detail WHERE user.name = ? limit 0 offset 10
2015-12-30 08:49:46 +00:00
```
2016-04-27 12:08:35 +00:00
* Query multiple records and record by record handle, there are two methods Iterate and Rows
2015-12-30 08:49:46 +00:00
```Go
err := engine.Iterate(&User{Name:name}, func(idx int, bean interface{}) error {
user := bean.(*User)
return nil
})
// SELECT * FROM user
rows, err := engine.Rows(&User{Name:name})
// SELECT * FROM user
defer rows.Close()
bean := new(Struct)
for rows.Next() {
err = rows.Scan(bean)
}
```
2016-04-27 12:08:35 +00:00
* Update one or more records, default will update non-empty and non-zero fields except when you use Cols, AllCols and so on.
2015-12-30 08:49:46 +00:00
```Go
affected, err := engine.Id(1).Update(&user)
// UPDATE user SET ... Where id = ?
affected, err := engine.Update(&user, &User{Name:name})
// UPDATE user SET ... Where name = ?
var ids = []int64{1, 2, 3}
affected, err := engine.In("id", ids).Update(&user)
2015-12-30 08:49:46 +00:00
// UPDATE user SET ... Where id IN (?, ?, ?)
// force update indicated columns by Cols
affected, err := engine.Id(1).Cols("age").Update(&User{Name:name, Age: 12})
// UPDATE user SET age = ?, updated=? Where id = ?
// force NOT update indicated columns by Omit
affected, err := engine.Id(1).Omit("name").Update(&User{Name:name, Age: 12})
// UPDATE user SET age = ?, updated=? Where id = ?
affected, err := engine.Id(1).AllCols().Update(&user)
// UPDATE user SET name=?,age=?,salt=?,passwd=?,updated=? Where id = ?
```
2016-04-27 12:08:35 +00:00
* Delete one or more records, Delete MUST have condition
2015-12-30 08:49:46 +00:00
```Go
affected, err := engine.Where(...).Delete(&user)
// DELETE FROM user Where ...
affected, err := engine.Id(2).Delete(&user)
2015-12-30 08:49:46 +00:00
```
2015-12-30 08:58:58 +00:00
* Count records
2015-12-30 08:49:46 +00:00
```Go
counts, err := engine.Count(&user)
// SELECT count(*) AS total FROM user
```
2016-09-17 12:12:24 +00:00
* Query conditions builder
```Go
err := engine.Where(builder.NotIn("a", 1, 2).And(builder.In("b", "c", "d", "e"))).Find(&users)
// SELECT id, name ... FROM user WHERE a NOT IN (?, ?) AND b IN (?, ?, ?)
2016-09-26 06:08:37 +00:00
```
2016-09-17 12:12:24 +00:00
2013-11-22 01:20:41 +00:00
# Cases
2017-08-13 13:19:20 +00:00
* [studygolang](http://studygolang.com/) - [github.com/studygolang/studygolang](https://github.com/studygolang/studygolang)
2017-07-14 01:20:13 +00:00
* [Gitea](http://gitea.io) - [github.com/go-gitea/gitea](http://github.com/go-gitea/gitea)
* [Gogs](http://try.gogits.org) - [github.com/gogits/gogs](http://github.com/gogits/gogs)
* [grafana](https://grafana.com/) - [github.com/grafana/grafana](http://github.com/grafana/grafana)
2015-05-26 08:27:18 +00:00
* [github.com/m3ng9i/qreader](https://github.com/m3ng9i/qreader)
2015-02-18 00:58:07 +00:00
* [Wego](http://github.com/go-tango/wego)
2014-11-13 01:18:40 +00:00
* [Docker.cn](https://docker.cn/)
2014-04-20 08:01:53 +00:00
* [Xorm Adapter](https://github.com/casbin/xorm-adapter) for [Casbin](https://github.com/casbin/casbin) - [github.com/casbin/xorm-adapter](https://github.com/casbin/xorm-adapter)
2015-02-18 00:58:07 +00:00
* [Gorevel](http://gorevel.cn/) - [github.com/goofcc/gorevel](http://github.com/goofcc/gorevel)
2014-11-13 01:18:40 +00:00
2013-11-15 03:04:48 +00:00
* [Gowalker](http://gowalker.org) - [github.com/Unknwon/gowalker](http://github.com/Unknwon/gowalker)
2014-02-12 07:10:37 +00:00
* [Gobuild.io](http://gobuild.io) - [github.com/shxsun/gobuild](http://github.com/shxsun/gobuild)
* [Sudo China](http://sudochina.com) - [github.com/insionng/toropress](http://github.com/insionng/toropress)
* [Godaily](http://godaily.org) - [github.com/govc/godaily](http://github.com/govc/godaily)
2014-10-27 04:05:26 +00:00
* [YouGam](http://www.yougam.com/)
2014-01-07 09:21:02 +00:00
2014-03-27 14:16:06 +00:00
* [GoCMS - github.com/zzboy/GoCMS](https://github.com/zzdboy/GoCMS)
2014-01-07 09:21:02 +00:00
2014-04-13 06:32:21 +00:00
* [GoBBS - gobbs.domolo.com](http://gobbs.domolo.com/)
2014-10-28 02:37:37 +00:00
* [go-blog](http://wangcheng.me) - [github.com/easykoo/go-blog](https://github.com/easykoo/go-blog)
2014-04-13 06:32:21 +00:00
2013-11-22 01:20:41 +00:00
# Discuss
2013-12-08 13:40:58 +00:00
Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm)
2014-04-23 06:57:40 +00:00
# Contributing
2013-12-08 13:40:58 +00:00
If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
2013-12-31 06:33:02 +00:00
2014-01-07 09:21:02 +00:00
# LICENSE
BSD License
2014-04-15 12:09:20 +00:00
[http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)