improved readme
This commit is contained in:
parent
4012ee5805
commit
803f6db50c
15
README.md
15
README.md
|
@ -35,18 +35,29 @@ Drivers for Go's sql package which currently support database/sql includes:
|
||||||
|
|
||||||
* MyMysql: [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql/godrv)
|
* MyMysql: [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql/godrv)
|
||||||
|
|
||||||
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
|
|
||||||
|
|
||||||
* Postgres: [github.com/lib/pq](https://github.com/lib/pq)
|
* Postgres: [github.com/lib/pq](https://github.com/lib/pq)
|
||||||
|
|
||||||
|
* Tidb: [github.com/pingcap/tidb](https://github.com/pingcap/tidb)
|
||||||
|
|
||||||
|
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
|
||||||
|
|
||||||
* MsSql: [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
|
* MsSql: [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
|
||||||
|
|
||||||
* MsSql: [github.com/lunny/godbc](https://github.com/lunny/godbc)
|
* MsSql: [github.com/lunny/godbc](https://github.com/lunny/godbc)
|
||||||
|
|
||||||
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (experiment)
|
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (experiment)
|
||||||
|
|
||||||
|
* ql: [github.com/cznic/ql](https://github.com/cznic/ql) (experiment)
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
* **v0.4.4**
|
||||||
|
* ql database expriment support
|
||||||
|
* tidb database expriment support
|
||||||
|
* sql.NullString and etc. field support
|
||||||
|
* select ForUpdate support
|
||||||
|
* many bugs fixed
|
||||||
|
|
||||||
* **v0.4.3**
|
* **v0.4.3**
|
||||||
* Json column type support
|
* Json column type support
|
||||||
* oracle expirement support
|
* oracle expirement support
|
||||||
|
|
20
README_CN.md
20
README_CN.md
|
@ -36,28 +36,34 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
|
||||||
|
|
||||||
* MyMysql: [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql/godrv)
|
* MyMysql: [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql/godrv)
|
||||||
|
|
||||||
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
|
|
||||||
|
|
||||||
* Postgres: [github.com/lib/pq](https://github.com/lib/pq)
|
* Postgres: [github.com/lib/pq](https://github.com/lib/pq)
|
||||||
|
|
||||||
|
* Tidb: [github.com/pingcap/tidb](https://github.com/pingcap/tidb)
|
||||||
|
|
||||||
|
* SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
|
||||||
|
|
||||||
* MsSql: [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
|
* MsSql: [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb)
|
||||||
|
|
||||||
* MsSql: [github.com/lunny/godbc](https://github.com/lunny/godbc)
|
* MsSql: [github.com/lunny/godbc](https://github.com/lunny/godbc)
|
||||||
|
|
||||||
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (试验性支持)
|
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (试验性支持)
|
||||||
|
|
||||||
|
* ql: [github.com/cznic/ql](https://github.com/cznic/ql) (试验性支持)
|
||||||
|
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
* **v0.4.4**
|
||||||
|
* Tidb 数据库支持
|
||||||
|
* QL 试验性支持
|
||||||
|
* sql.NullString支持
|
||||||
|
* ForUpdate 支持
|
||||||
|
* bug修正
|
||||||
|
|
||||||
* **v0.4.3**
|
* **v0.4.3**
|
||||||
* Json 字段类型支持
|
* Json 字段类型支持
|
||||||
* oracle实验性支持
|
* oracle实验性支持
|
||||||
* bug修正
|
* bug修正
|
||||||
|
|
||||||
* **v0.4.2**
|
|
||||||
* 事物如未Rollback或Commit,在关闭时会自动Rollback
|
|
||||||
* Gonic 映射支持
|
|
||||||
* bug修正
|
|
||||||
|
|
||||||
[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
|
[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
|
||||||
|
|
||||||
## 安装
|
## 安装
|
||||||
|
|
Loading…
Reference in New Issue