xorm/README.md

381 lines
9.2 KiB
Markdown
Raw Normal View History

2013-05-06 08:01:17 +00:00
# xorm
2013-05-03 07:26:51 +00:00
2013-05-12 05:43:09 +00:00
[中文](https://github.com/lunny/xorm/blob/master/README_CN.md)
2013-05-03 07:26:51 +00:00
xorm is a simple and powerful ORM for Go. It makes dabatabse operating simple.
2013-06-08 04:47:28 +00:00
[![Build Status](https://drone.io/github.com/lunny/xorm/status.png)](https://drone.io/github.com/lunny/xorm/latest)
2013-05-11 10:38:43 +00:00
## Drivers Support
Drivers for Go's sql package which currently support database/sql includes:
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
* Mysql: [github.com/Go-SQL-Driver/MySQL](https://github.com/Go-SQL-Driver/MySQL)
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
## Changelog
* **v0.1.8** : Added union index and union unique supported, please see [Mapping Rules](#mapping).
* **v0.1.7** : Added IConnectPool interface and NoneConnectPool, SysConnectPool, SimpleConnectPool the three implements. You can choose one of them and the default is SysConnectPool. You can customrize your own connection pool. struct Engine added Close method, It should be invoked before system exit.
* **v0.1.6** : Added conversion interface support; added struct derive support; added single mapping support
2013-06-22 01:05:19 +00:00
* **v0.1.5** : Added multi threads support; added Sql() function for struct query; Get function changed return inteface; MakeSession and Create are instead with NewSession and NewEngine.
* **v0.1.4** : Added simple cascade load support; added more data type supports.
* **v0.1.3** : Find function now supports both slice and map; Add Table function for multi tables and temperory tables support
* **v0.1.2** : Insert function now supports both struct and slice pointer parameters, batch inserting and auto transaction
2013-05-11 10:38:43 +00:00
* **v0.1.1** : Add Id, In functions and improved README
* **v0.1.0** : Inital release.
2013-05-09 02:48:30 +00:00
## Features
2013-05-11 10:38:43 +00:00
* Struct<->Table Mapping Supports, both name mapping and filed tags mapping
* Database Transaction Support
2013-05-09 02:48:30 +00:00
2013-05-11 10:38:43 +00:00
* Both ORM and SQL Operation Support
2013-05-09 02:48:30 +00:00
2013-05-11 10:38:43 +00:00
* Simply usage
2013-05-09 02:48:30 +00:00
* Support Id, In, Where, Limit, Join, Having, Sql functions and sturct as query conditions
* Support simple cascade load just like Hibernate for Java
2013-05-03 07:26:51 +00:00
2013-05-06 08:01:17 +00:00
## Installing xorm
go get github.com/lunny/xorm
2013-05-03 07:26:51 +00:00
2013-05-06 08:01:17 +00:00
## Quick Start
2013-05-03 07:26:51 +00:00
2013-06-22 01:02:01 +00:00
1.Create a database engine just like sql.Open, commonly you just need create once. Please notice, Create function will be deprecated, use NewEngine instead.
2013-05-12 05:43:09 +00:00
```Go
2013-05-11 13:27:36 +00:00
import (
_ "github.com/Go-SQL-Driver/MySQL"
"github.com/lunny/xorm"
)
2013-06-22 01:02:01 +00:00
err, engine := xorm.NewEngine("mysql", "root:123@/test?charset=utf8")
2013-07-03 04:46:56 +00:00
defer engine.Close()
2013-05-11 10:38:43 +00:00
```
2013-05-09 01:56:58 +00:00
or
```Go
2013-05-11 13:27:36 +00:00
import (
_ "github.com/mattn/go-sqlite3"
"github.com/lunny/xorm"
)
2013-07-03 04:46:56 +00:00
err, engine = xorm.NewEngine("sqlite3", "./test.db")
defer engine.Close()
2013-05-11 10:38:43 +00:00
```
2013-05-12 06:04:14 +00:00
1.1.If you want to show all generated SQL
```Go
2013-05-12 06:04:14 +00:00
engine.ShowSQL = true
```
1.2 If you want to use your own connection pool
```Go
err = engine.SetPool(NewSimpleConnectPool())
```
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
2.Define a struct
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
type User struct {
Id int
Name string
Age int `xorm:"-"`
}
2013-05-12 06:04:14 +00:00
```
2013-05-12 06:25:36 +00:00
2.1.More mapping rules, please see [Mapping Rules](#mapping)
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
3.When you set up your program, you can use CreateTables to create database tables.
2013-05-06 08:01:17 +00:00
```Go
2013-05-11 13:27:36 +00:00
err := engine.CreateTables(&User{})
// or err := engine.Map(&User{}, &Article{})
// err = engine.CreateAll()
```
2013-05-06 08:01:17 +00:00
2013-06-22 01:02:01 +00:00
4.then, insert a struct to table, if success, User.Id will be set to id
2013-05-06 08:01:17 +00:00
```Go
2013-05-11 13:27:36 +00:00
id, err := engine.Insert(&User{Name:"lunny"})
```
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
or if you want to update records
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
user := User{Name:"xlw"}
rows, err := engine.Update(&user, &User{Id:1})
// or rows, err := engine.Where("id = ?", 1).Update(&user)
// or rows, err := engine.Id(1).Update(&user)
```
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
5.Fetch a single object by user
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
var user = User{Id:27}
2013-06-22 01:02:01 +00:00
has, err := engine.Get(&user)
// or has, err := engine.Id(27).Get(&user)
2013-05-03 07:26:51 +00:00
2013-05-11 13:27:36 +00:00
var user = User{Name:"xlw"}
2013-06-22 01:02:01 +00:00
has, err := engine.Get(&user)
2013-05-11 13:27:36 +00:00
```
2013-05-08 13:42:22 +00:00
6.Fetch multipe objects into a slice or a map, use Find
2013-05-11 10:38:43 +00:00
```Go
2013-05-11 13:27:36 +00:00
var everyone []Userinfo
err := engine.Find(&everyone)
users := make(map[int64]Userinfo)
err := engine.Find(&users)
2013-05-11 13:27:36 +00:00
```
2013-05-11 10:38:43 +00:00
6.1 also you can use Where, Limit
2013-05-08 13:42:22 +00:00
```Go
2013-05-11 13:27:36 +00:00
var allusers []Userinfo
err := engine.Where("id > ?", "3").Limit(10,20).Find(&allusers) //Get id>3 limit 10 offset 20
```
2013-05-11 10:38:43 +00:00
6.2 or you can use a struct query
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
var tenusers []Userinfo
err := engine.Limit(10).Find(&tenusers, &Userinfo{Name:"xlw"}) //Get All Name="xlw" limit 10 offset 0
```
2013-05-08 13:42:22 +00:00
2013-05-11 10:38:43 +00:00
6.3 or In function
2013-05-08 13:42:22 +00:00
```Go
2013-05-11 13:27:36 +00:00
var tenusers []Userinfo
err := engine.In("id", 1, 3, 5).Find(&tenusers) //Get All id in (1, 3, 5)
```
2013-05-11 10:38:43 +00:00
7.Delete
2013-05-08 13:42:22 +00:00
```Go
2013-05-11 13:27:36 +00:00
err := engine.Delete(&User{Id:1})
// or err := engine.Id(1).Delete(&User{})
```
2013-05-11 10:38:43 +00:00
8.Count
```Go
2013-05-11 13:27:36 +00:00
total, err := engine.Count(&User{Name:"xlw"})
```
2013-05-08 13:42:22 +00:00
2013-05-16 06:16:39 +00:00
2013-05-16 07:03:08 +00:00
## Execute SQL
2013-05-16 06:12:27 +00:00
2013-05-11 10:38:43 +00:00
Of course, SQL execution is also provided.
1.if select then use Query
2013-05-08 13:42:22 +00:00
```Go
2013-05-11 13:27:36 +00:00
sql := "select * from userinfo"
results, err := engine.Query(sql)
```
2013-05-11 10:38:43 +00:00
2.if insert, update or delete then use Exec
```Go
2013-05-11 13:27:36 +00:00
sql = "update userinfo set username=? where id=?"
res, err := engine.Exec(sql, "xiaolun", 1)
```
2013-05-16 06:16:39 +00:00
2013-05-06 08:01:17 +00:00
2013-05-16 07:03:08 +00:00
## Advanced Usage
2013-05-16 06:12:27 +00:00
2013-06-22 01:02:01 +00:00
for deep usage, you should create a session, this func will create a database connection immediatelly.Please notice, MakeSession will be deprecated last, use NewSession instead
2013-05-11 13:27:36 +00:00
```Go
2013-06-22 01:02:01 +00:00
session := engine.NewSession()
2013-05-11 13:27:36 +00:00
defer session.Close()
2013-06-22 01:02:01 +00:00
2013-05-11 13:27:36 +00:00
```
2013-05-03 07:26:51 +00:00
2013-05-03 07:41:50 +00:00
1.Fetch a single object by where
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
var user Userinfo
session.Where("id=?", 27).Get(&user)
2013-05-03 07:41:50 +00:00
2013-07-12 02:14:44 +00:00
var userJohn Userinfo
session.Where("name = ?", "john").Get(&userJohn) // more complex query
2013-05-03 07:26:51 +00:00
2013-07-12 02:14:44 +00:00
var userOldJohn Userinfo
session.Where("name = ? and age > ?", "john", 88).Get(&userOldJohn) // even more complex
2013-05-11 13:27:36 +00:00
```
2013-05-03 07:26:51 +00:00
2013-05-03 07:41:50 +00:00
2.Fetch multiple objects
2013-05-11 13:27:36 +00:00
```Go
2013-05-11 13:27:36 +00:00
var allusers []Userinfo
err := session.Where("id > ?", "3").Limit(10,20).Find(&allusers) //Get id>3 limit 10 offset 20
2013-05-03 07:26:51 +00:00
2013-05-11 13:27:36 +00:00
var tenusers []Userinfo
err := session.Limit(10).Find(&tenusers, &Userinfo{Name:"xlw"}) //Get All Name="xlw" limit 10 if omit offset the default is 0
2013-05-06 08:01:17 +00:00
2013-05-11 13:27:36 +00:00
var everyone []Userinfo
err := session.Find(&everyone)
```
2013-05-08 13:42:22 +00:00
3.Transaction
```Go
2013-05-11 13:27:36 +00:00
// add Begin() before any action
2013-06-22 01:02:01 +00:00
err := session.Begin()
2013-05-11 13:27:36 +00:00
user1 := Userinfo{Username: "xiaoxiao", Departname: "dev", Alias: "lunny", Created: time.Now()}
_, err = session.Insert(&user1)
if err != nil {
session.Rollback()
return
}
user2 := Userinfo{Username: "yyy"}
_, err = session.Where("id = ?", 2).Update(&user2)
if err != nil {
session.Rollback()
return
}
_, err = session.Delete(&user2)
if err != nil {
session.Rollback()
return
}
// add Commit() after all actions
err = session.Commit()
if err != nil {
return
}
```
2013-05-08 13:42:22 +00:00
4.Mixed Transaction
```Go
2013-05-11 13:27:36 +00:00
// add Begin() before any action
2013-06-22 01:02:01 +00:00
err := session.Begin()
2013-05-11 13:27:36 +00:00
user1 := Userinfo{Username: "xiaoxiao", Departname: "dev", Alias: "lunny", Created: time.Now()}
_, err = session.Insert(&user1)
if err != nil {
session.Rollback()
return
}
user2 := Userinfo{Username: "yyy"}
_, err = session.Where("id = ?", 2).Update(&user2)
if err != nil {
session.Rollback()
return
}
_, err = session.Exec("delete from userinfo where username = ?", user2.Username)
if err != nil {
session.Rollback()
return
}
// add Commit() after all actions
err = session.Commit()
if err != nil {
return
}
```
5.Derive mapping
Please see derive.go in examples folder.
2013-05-03 07:26:51 +00:00
2013-05-16 07:03:08 +00:00
## Mapping Rules
2013-05-16 06:12:27 +00:00
2013-05-12 06:25:36 +00:00
<a name="mapping" id="mapping"></a>
2013-05-11 10:38:43 +00:00
1.Struct and struct's fields name should be Pascal style, and the table and column's name default is SQL style.
2013-05-08 13:42:22 +00:00
2013-05-11 10:38:43 +00:00
For example:
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
The struct's Name 'UserInfo' will turn into the table name 'user_info', the same as the keyname. If the keyname is 'UserName' will turn into the select colum 'user_name'
2013-05-03 07:26:51 +00:00
2013-05-11 10:38:43 +00:00
2.If You want change the mapping rules, you have two methods. One is to implement your own Map struct interface according IMapper, you can find the interface in mapper.go and set it to engine.Mapper
Another is use field tag, field tag support the below keywords which split with space:
2013-05-08 13:42:22 +00:00
<table>
<tr>
<td>name</td><td>column name, if no this name, the name is auto generated according field name and mapper rule.</td>
2013-05-08 13:42:22 +00:00
</tr>
<tr>
<td>pk</td><td>the field is a primary key</td>
</tr>
<tr>
<td>int(11)/varchar(50)/text/date/datetime/blob/decimal(26,2)</td><td>column type</td>
2013-05-08 13:42:22 +00:00
</tr>
<tr>
<td>autoincr</td><td>auto incrment</td>
</tr>
<tr>
<td>[not ]null</td><td>if column can be null value</td>
</tr>
<tr>
<td>unique or unique(uniquename)</td><td>unique or union unique as uniquename</td>
</tr>
<tr>
<td>index or index(indexname)</td><td>index or union index as indexname</td>
</tr>
<tr>
<td>extends</td><td>used in anonymous struct means mapping this struct's fields to table</td>
2013-05-08 13:42:22 +00:00
</tr>
<tr>
<td>-</td><td>this field is not map as a table column</td>
</tr>
</table>
2013-05-11 10:38:43 +00:00
For Example
```Go
2013-05-11 13:27:36 +00:00
type Userinfo struct {
Uid int `xorm:"id pk not null autoincr"`
Username string `xorm:"unique"`
2013-05-11 13:27:36 +00:00
Departname string
Alias string `xorm:"-"`
Created time.Time
}
```
3.For customize table name, use Table() function, for example:
2013-05-11 10:38:43 +00:00
```Go
// batch create tables
for i := 0; i < 10; i++ {
engine.Table(fmt.Sprintf("user_%v", i)).CreateTable(&Userinfo{})
}
// insert into table according id
user := Userinfo{Uid: 25, Username:"sslfs"}
engine.Table(fmt.Sprintf("user_%v", user.Uid % 10)).Insert(&user)
```
2013-05-16 06:16:39 +00:00
2013-05-16 07:03:08 +00:00
## Documents
2013-05-16 06:12:27 +00:00
2013-05-11 07:45:24 +00:00
Please visit [GoWalker](http://gowalker.org/github.com/lunny/xorm)
2013-05-16 06:12:27 +00:00
2013-05-16 06:16:39 +00:00
2013-05-16 07:03:08 +00:00
## FAQ
2013-05-16 06:12:27 +00:00
2013-05-06 08:01:17 +00:00
1.How the xorm tag use both with json?
2013-05-11 10:38:43 +00:00
Use space.
2013-05-06 08:01:17 +00:00
```Go
2013-05-11 13:27:36 +00:00
type User struct {
Name string `json:"name" xorm:"name"`
}
```
2013-05-03 07:26:51 +00:00
## LICENSE
BSD License
[http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)