From f1ec5063b2c53b08829ea1092a9821faa796fc5c Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Thu, 16 May 2013 14:16:39 +0800 Subject: [PATCH] improved readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 461c0edf..62e468bf 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ err := engine.Delete(&User{Id:1}) total, err := engine.Count(&User{Name:"xlw"}) ``` + ##Execute SQL Of course, SQL execution is also provided. @@ -168,6 +169,7 @@ results, err := engine.Query(sql) sql = "update userinfo set username=? where id=?" res, err := engine.Exec(sql, "xiaolun", 1) ``` + ##Advanced Usage @@ -318,10 +320,12 @@ type Userinfo struct { } ``` + ##Documents Please visit [GoWalker](http://gowalker.org/github.com/lunny/xorm) + ##FAQ 1.How the xorm tag use both with json?