commit
9682b65488
15
README.md
15
README.md
|
@ -41,6 +41,18 @@ Drivers for Go's sql package which currently support database/sql includes:
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
* **v0.3.2**
|
||||||
|
Improvements:
|
||||||
|
* Add MustCols function
|
||||||
|
|
||||||
|
Bug Fixes:
|
||||||
|
* #46
|
||||||
|
* #51
|
||||||
|
* #53
|
||||||
|
* #89
|
||||||
|
* #86
|
||||||
|
* #92
|
||||||
|
|
||||||
* **v0.3.1**
|
* **v0.3.1**
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
@ -90,6 +102,9 @@ Or
|
||||||
|
|
||||||
* [GoCMS - github.com/zzboy/GoCMS](https://github.com/zzdboy/GoCMS)
|
* [GoCMS - github.com/zzboy/GoCMS](https://github.com/zzdboy/GoCMS)
|
||||||
|
|
||||||
|
* [GoBBS - gobbs.domolo.com](http://gobbs.domolo.com/)
|
||||||
|
|
||||||
|
|
||||||
# Discuss
|
# Discuss
|
||||||
|
|
||||||
Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm)
|
Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm)
|
||||||
|
|
|
@ -93,6 +93,9 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
|
||||||
|
|
||||||
* [GoCMS - github.com/zzboy/GoCMS](https://github.com/zzdboy/GoCMS)
|
* [GoCMS - github.com/zzboy/GoCMS](https://github.com/zzdboy/GoCMS)
|
||||||
|
|
||||||
|
* [GoBBS - gobbs.domolo.com](http://gobbs.domolo.com/)
|
||||||
|
|
||||||
|
|
||||||
## 讨论
|
## 讨论
|
||||||
|
|
||||||
请加入QQ群:280360085 进行讨论。
|
请加入QQ群:280360085 进行讨论。
|
||||||
|
|
|
@ -1,5 +1,18 @@
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
* **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**
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
@ -11,20 +24,20 @@
|
||||||
|
|
||||||
Improvements:
|
Improvements:
|
||||||
* 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()
|
||||||
|
|
||||||
|
|
||||||
* **v0.2.3** : Improved documents; Optimistic Locking support; Timestamp with time zone support; Mapper change to tableMapper and columnMapper & added PrefixMapper & SuffixMapper support custom table or column name's prefix and suffix;Insert now return affected, err instead of id, err; Added UseBool & Distinct;
|
* **v0.2.3** : Improved documents; Optimistic Locking support; Timestamp with time zone support; Mapper change to tableMapper and columnMapper & added PrefixMapper & SuffixMapper support custom table or column name's prefix and suffix;Insert now return affected, err instead of id, err; Added UseBool & Distinct;
|
||||||
* **v0.2.2** : Postgres drivers now support lib/pq; Added method Iterate for record by record to handler;Added SetMaxConns(go1.2+) support; some bugs fixed.
|
* **v0.2.2** : Postgres drivers now support lib/pq; Added method Iterate for record by record to handler;Added SetMaxConns(go1.2+) support; some bugs fixed.
|
||||||
* **v0.2.1** : Added database reverse tool, now support generate go & c++ codes, see [Xorm Tool README](https://github.com/lunny/xorm/blob/master/xorm/README.md); some bug fixed.
|
* **v0.2.1** : Added database reverse tool, now support generate go & c++ codes, see [Xorm Tool README](https://github.com/lunny/xorm/blob/master/xorm/README.md); some bug fixed.
|
||||||
* **v0.2.0** : Added Cache supported, select is speeder up 3~5x; Added SameMapper for same name between struct and table; Added Sync method for auto added tables, columns, indexes;
|
* **v0.2.0** : Added Cache supported, select is speeder up 3~5x; Added SameMapper for same name between struct and table; Added Sync method for auto added tables, columns, indexes;
|
||||||
* **v0.1.9** : Added postgres and mymysql supported; Added ` and ? supported on Raw SQL even if postgres; Added Cols, StoreEngine, Charset function, Added many column data type supported, please see [Mapping Rules](#mapping).
|
* **v0.1.9** : Added postgres and mymysql supported; Added ` and ? supported on Raw SQL even if postgres; Added Cols, StoreEngine, Charset function, Added many column data type supported, please see [Mapping Rules](#mapping).
|
||||||
* **v0.1.8** : Added union index and union unique supported, please see [Mapping Rules](#mapping).
|
* **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.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
|
* **v0.1.6** : Added conversion interface support; added struct derive support; added single mapping support
|
||||||
* **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.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.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.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
|
* **v0.1.2** : Insert function now supports both struct and slice pointer parameters, batch inserting and auto transaction
|
||||||
* **v0.1.1** : Add Id, In functions and improved README
|
* **v0.1.1** : Add Id, In functions and improved README
|
||||||
* **v0.1.0** : Inital release.
|
* **v0.1.0** : Inital release.
|
||||||
|
|
Loading…
Reference in New Issue