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.
2015-08-26 01:39:56 +00:00
[](https://gitter.im/go-xorm/xorm?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge)
2016-07-07 01:01:13 +00:00
[](https://drone.io/github.com/go-xorm/tests/latest)
2013-11-22 01:20:41 +00:00
2016-02-16 12:47:34 +00:00
# Notice
2016-04-27 12:08:35 +00:00
The last master version is not backwards compatible. You should use `engine.ShowSQL()` and `engine.Logger().SetLevel()` instead of `engine.ShowSQL = ` , `engine.ShowInfo = ` and so on.
2016-02-16 12:47:34 +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
2013-11-29 03:50:28 +00:00
* Optimistic Locking support
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
* MyMysql: [github.com/ziutek/mymysql/godrv ](https://github.com/ziutek/mymysql/godrv )
* 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 )
2014-01-07 09:21:02 +00:00
* MsSql: [github.com/lunny/godbc ](https://github.com/lunny/godbc )
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
2013-10-15 02:40:21 +00:00
2016-09-17 12:04:52 +00:00
* **v0.6.0**
* remove support for ql
* 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-02-29 14:32:41 +00:00
* **v0.5.0**
* logging interface changed
* some bugs fixed
2016-02-16 09:18:01 +00:00
* **v0.4.5**
* many bugs fixed
2016-07-07 01:01:13 +00:00
* extends support unlimited deepth
2016-02-16 09:18:01 +00:00
* Delete Limit support
2015-09-24 14:49:14 +00:00
* **v0.4.4**
* ql database expriment support
* tidb database expriment support
* sql.NullString and etc. field support
* select ForUpdate support
* many 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
2015-12-30 08:49:46 +00:00
If you have [gopm ](https://github.com/gpmgo/gopm ) installed,
2013-12-01 03:08:17 +00:00
2014-04-15 13:52:19 +00:00
gopm get github.com/go-xorm/xorm
2014-11-07 09:56:33 +00:00
2014-01-07 09:21:02 +00:00
Or
2014-04-15 13:52:19 +00:00
go get github.com/go-xorm/xorm
2014-01-07 09:21:02 +00:00
2013-11-22 05:05:10 +00:00
# Documents
2013-10-15 02:40:21 +00:00
2014-10-19 06:41:47 +00:00
* [Manual ](http://xorm.io/docs )
2014-04-15 13:52:19 +00:00
* [GoDoc ](http://godoc.org/github.com/go-xorm/xorm )
2014-01-07 09:21:02 +00:00
2014-04-15 13:52:19 +00:00
* [GoWalker ](http://gowalker.org/github.com/go-xorm/xorm )
2013-10-15 02:40:21 +00:00
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))
```
2015-12-30 08:58:58 +00:00
* Query a SQL string, the returned results is []map[string][]byte
2015-12-30 08:49:46 +00:00
```Go
results, err := engine.Query("select * from user")
```
2015-12-30 08:58:58 +00:00
* Execute a SQL string, the returned results
2015-12-30 08:49:46 +00:00
```Go
affected, err := engine.Exec("update user set age = ? where name = ?", age, name)
```
2016-04-27 12:08:35 +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
```
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}
2016-03-31 10:19:00 +00:00
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 ...
2016-03-31 10:19:00 +00:00
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
```
2013-11-22 01:20:41 +00:00
# Cases
2013-10-15 02:40:21 +00:00
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
2014-03-27 14:16:06 +00:00
* [Gogs ](http://try.gogits.org ) - [github.com/gogits/gogs ](http://github.com/gogits/gogs )
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 )
2013-10-15 02:40:21 +00:00
* [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
2014-04-15 13:52:19 +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/ )