commit
1c100c7659
23
README.md
23
README.md
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Xorm is a simple and powerful ORM for Go.
|
Xorm is a simple and powerful ORM for Go.
|
||||||
|
|
||||||
[](https://drone.io/github.com/lunny/xorm/latest) [](http://gowalker.org/github.com/lunny/xorm) [](https://bitdeli.com/free "Bitdeli Badge")
|
[](https://drone.io/github.com/go-xorm/xorm/latest) [](http://gowalker.org/github.com/go-xorm/xorm) [](https://bitdeli.com/free "Bitdeli Badge")
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
|
|
||||||
|
@ -14,11 +14,11 @@ Xorm is a simple and powerful ORM for Go.
|
||||||
|
|
||||||
* Both ORM and raw SQL operation Support
|
* Both ORM and raw SQL operation Support
|
||||||
|
|
||||||
* Sync database sechmea Support
|
* Sync database schema Support
|
||||||
|
|
||||||
* Query Cache speed up
|
* Query Cache speed up
|
||||||
|
|
||||||
* Database Reverse support, See [Xorm Tool README](https://github.com/lunny/xorm/blob/master/xorm/README.md)
|
* Database Reverse support, See [Xorm Tool README](https://github.com/go-xorm/xorm/blob/master/xorm/README.md)
|
||||||
|
|
||||||
* Simple cascade loading support
|
* Simple cascade loading support
|
||||||
|
|
||||||
|
@ -43,7 +43,8 @@ Drivers for Go's sql package which currently support database/sql includes:
|
||||||
|
|
||||||
* **v0.3.2**
|
* **v0.3.2**
|
||||||
Improvements:
|
Improvements:
|
||||||
* Add MustCols function
|
* Add AllCols & MustCols function
|
||||||
|
* Add TableName for custom table name
|
||||||
|
|
||||||
Bug Fixes:
|
Bug Fixes:
|
||||||
* #46
|
* #46
|
||||||
|
@ -66,25 +67,25 @@ Drivers for Go's sql package which currently support database/sql includes:
|
||||||
* Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type
|
* Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type
|
||||||
* Performance improvement for Get()/Find()/Iterate()
|
* Performance improvement for Get()/Find()/Iterate()
|
||||||
|
|
||||||
[More changelogs ...](https://github.com/lunny/xorm/blob/master/docs/Changelog.md)
|
[More changelogs ...](https://github.com/go-xorm/xorm/blob/master/docs/Changelog.md)
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
If you have [gopm](https://github.com/gpmgo/gopm) installed,
|
If you have [gopm](https://github.com/gpmgo/gopm) installed,
|
||||||
|
|
||||||
gopm get github.com/lunny/xorm
|
gopm get github.com/go-xorm/xorm
|
||||||
|
|
||||||
Or
|
Or
|
||||||
|
|
||||||
go get github.com/lunny/xorm
|
go get github.com/go-xorm/xorm
|
||||||
|
|
||||||
# Documents
|
# Documents
|
||||||
|
|
||||||
* [GoDoc](http://godoc.org/github.com/lunny/xorm)
|
* [GoDoc](http://godoc.org/github.com/go-xorm/xorm)
|
||||||
|
|
||||||
* [GoWalker](http://gowalker.org/github.com/lunny/xorm)
|
* [GoWalker](http://gowalker.org/github.com/go-xorm/xorm)
|
||||||
|
|
||||||
* [Quick Start](https://github.com/lunny/xorm/blob/master/docs/QuickStartEn.md)
|
* [Quick Start](https://github.com/go-xorm/xorm/blob/master/docs/QuickStartEn.md)
|
||||||
|
|
||||||
# Cases
|
# Cases
|
||||||
|
|
||||||
|
@ -111,7 +112,7 @@ Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xor
|
||||||
|
|
||||||
# Contributors
|
# Contributors
|
||||||
|
|
||||||
If you want to pull request, please see [CONTRIBUTING](https://github.com/lunny/xorm/blob/master/CONTRIBUTING.md)
|
If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
|
||||||
|
|
||||||
* [Lunny](https://github.com/lunny)
|
* [Lunny](https://github.com/lunny)
|
||||||
* [Nashtsai](https://github.com/nashtsai)
|
* [Nashtsai](https://github.com/nashtsai)
|
||||||
|
|
13
README_CN.md
13
README_CN.md
|
@ -42,6 +42,19 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
|
||||||
|
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
* **v0.3.2**
|
||||||
|
Improvements:
|
||||||
|
* Add AllCols & MustCols function
|
||||||
|
* Add TableName for custom table name
|
||||||
|
|
||||||
|
Bug Fixes:
|
||||||
|
* #46
|
||||||
|
* #51
|
||||||
|
* #53
|
||||||
|
* #89
|
||||||
|
* #86
|
||||||
|
* #92
|
||||||
|
|
||||||
* **v0.3.1**
|
* **v0.3.1**
|
||||||
|
|
||||||
新特性:
|
新特性:
|
||||||
|
|
|
@ -1,5 +1,18 @@
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
* **v0.3.2**
|
||||||
|
Improvements:
|
||||||
|
* Add AllCols & MustCols function
|
||||||
|
* Add TableName for custom table name
|
||||||
|
|
||||||
|
Bug Fixes:
|
||||||
|
* #46
|
||||||
|
* #51
|
||||||
|
* #53
|
||||||
|
* #89
|
||||||
|
* #86
|
||||||
|
* #92
|
||||||
|
|
||||||
* **v0.3.1**
|
* **v0.3.1**
|
||||||
|
|
||||||
新特性:
|
新特性:
|
||||||
|
|
Loading…
Reference in New Issue