Simple and Powerful ORM for Go, support mysql,postgres,tidb,sqlite3,sqlite,mssql,oracle,cockroach https://xorm.io
Go to file
2013-10-02 11:07:38 +08:00
docs improved docs 2013-09-29 22:00:21 +08:00
examples v0.2 Added Cache supported; Added SameMapper for same name between struct and table; Added Sync method for auto added tables, columns, indexes; 2013-09-29 16:43:10 +08:00
.gitignore fix mysql test and sqlite test 2013-05-06 16:01:17 +08:00
base_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
benchmark_base_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
cache.go cache bug fixed 2013-10-02 11:04:20 +08:00
doc.go fixed maxconns bug 2013-09-01 10:37:46 +08:00
engine.go improved docs 2013-09-30 15:08:34 +08:00
error.go Return error if Delete has no any condition 2013-09-30 22:22:54 +08:00
filter.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
helpers.go improved docs 2013-09-30 09:17:35 +08:00
install init project 2013-05-03 15:26:51 +08:00
mapper.go improved docs 2013-09-30 09:17:35 +08:00
mymysql_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
mymysql.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
mysql_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
mysql.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
pool.go improved docs 2013-09-30 14:45:34 +08:00
postgres_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
postgres.go improved docs 2013-09-30 14:45:34 +08:00
README_CN.md bug fixed #15 2013-09-30 08:50:56 +08:00
README.md improved docs 2013-09-29 22:39:59 +08:00
session.go cache bug fixed 2013-10-02 11:07:38 +08:00
sqlite3_test.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
sqlite3.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00
statement.go improved docs 2013-09-30 09:17:35 +08:00
table.go improved docs 2013-09-30 14:45:34 +08:00
VERSION many bugs fixed 2013-09-26 15:19:39 +08:00
xorm.go add Sync() method for sync column, index to table 2013-09-28 23:14:42 +08:00

xorm

中文

xorm is a simple and powerful ORM for Go. It makes dabatabse operating simple.

Build Status

Discuss

Message me on G+

Drivers Support

Drivers for Go's sql package which currently support database/sql includes:

Changelog

  • 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.
  • v0.1.8 : Added union index and union unique supported, please see Mapping Rules.
  • 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.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
  • v0.1.1 : Add Id, In functions and improved README
  • v0.1.0 : Inital release.

Features

  • Struct<->Table Mapping Supports, both name mapping and filed tags mapping

  • Database Transaction Support

  • Both ORM and SQL Operation Support

  • Simply usage

  • Support Id, In, Where, Limit, Join, Having, Sql functions and sturct as query conditions

  • Support simple cascade load just like Hibernate for Java

Installing xorm

go get github.com/lunny/xorm

Quick Start

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.

import (
	_ "github.com/Go-SQL-Driver/MySQL"
	"github.com/lunny/xorm"
)
engine, err := xorm.NewEngine("mysql", "root:123@/test?charset=utf8")
defer engine.Close()

or

import (
	_ "github.com/mattn/go-sqlite3"
	"github.com/lunny/xorm"
)
engine, err = xorm.NewEngine("sqlite3", "./test.db")
defer engine.Close()

1.1.If you want to show all generated SQL

engine.ShowSQL = true

1.2 If you want to use your own connection pool

err = engine.SetPool(NewSimpleConnectPool())

2.Define a struct

type User struct {
	Id int
    Name string
    Age int    `xorm:"-"`
}

2.1.More mapping rules, please see Mapping Rules

3.When you set up your program, you can use CreateTables to create database tables.

err := engine.CreateTables(&User{})
// or err := engine.Map(&User{}, &Article{})
// err = engine.CreateAll()

4.then, insert a struct to table, if success, User.Id will be set to id

id, err := engine.Insert(&User{Name:"lunny"})

or if you want to update records

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)

5.Fetch a single object by user

var user = User{Id:27}
has, err := engine.Get(&user)
// or has, err := engine.Id(27).Get(&user)

var user = User{Name:"xlw"}
has, err := engine.Get(&user)

6.Fetch multipe objects into a slice or a map, use Find

var everyone []Userinfo
err := engine.Find(&everyone)

users := make(map[int64]Userinfo)
err := engine.Find(&users)

6.1 also you can use Where, Limit

var allusers []Userinfo
err := engine.Where("id > ?", "3").Limit(10,20).Find(&allusers) //Get id>3 limit 10 offset 20

6.2 or you can use a struct query

var tenusers []Userinfo
err := engine.Limit(10).Find(&tenusers, &Userinfo{Name:"xlw"}) //Get All Name="xlw" limit 10 offset 0

6.3 or In function

var tenusers []Userinfo
err := engine.In("id", 1, 3, 5).Find(&tenusers) //Get All id in (1, 3, 5)

6.4 The default will query all columns of a table. Use Cols function if you want to select some columns

var tenusers []Userinfo
err := engine.Cols("id", "name").Find(&tenusers) //Find only id and name

7.Delete

err := engine.Delete(&User{Id:1})
// or err := engine.Id(1).Delete(&User{})

8.Count

total, err := engine.Count(&User{Name:"xlw"})

9.Cache

cacher := xorm.NewLRUCacher(xorm.NewMemoryStore(), 1000)
engine.SetDefaultCacher(cacher)

Execute SQL

Of course, SQL execution is also provided.

1.if select then use Query

sql := "select * from userinfo"
results, err := engine.Query(sql)

2.if insert, update or delete then use Exec

sql = "update userinfo set username=? where id=?"
res, err := engine.Exec(sql, "xiaolun", 1) 

Advanced Usage

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

session := engine.NewSession()
defer session.Close()

1.Fetch a single object by where

var user Userinfo
session.Where("id=?", 27).Get(&user)

var userJohn Userinfo
session.Where("name = ?", "john").Get(&userJohn) // more complex query

var userOldJohn Userinfo
session.Where("name = ? and age > ?", "john", 88).Get(&userOldJohn) // even more complex

2.Fetch multiple objects

var allusers []Userinfo
err := session.Where("id > ?", "3").Limit(10,20).Find(&allusers) //Get id>3 limit 10 offset 20

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

var everyone []Userinfo
err := session.Find(&everyone)

3.Transaction

// add Begin() before any action
err := session.Begin()	
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
}

4.Mixed Transaction

// add Begin() before any action
err := session.Begin()	
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.

Mapping Rules

1.Struct and struct's fields name should be Pascal style, and the table and column's name default is SQL style.

For example:

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'

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:

namecolumn name, if no this name, the name is auto generated according field name and mapper rule.
pkthe field is a primary key
more than 30 column type supported, please see [Column Type](https://github.com/lunny/xorm/blob/master/docs/COLUMNTYPE.md)column type
autoincrauto incrment
[not ]nullif column can be null value
unique or unique(uniquename)unique or union unique as uniquename
index or index(indexname)index or union index as indexname
extendsused in anonymous struct means mapping this struct's fields to table
-this field is not map as a table column
->this field only write to db and not read from db
<-this field only read from db and not write to db
createdthis field will auto fill current time when insert
updatedthis field will auto fill current time when update
default 0 or default 'abc'default value, use single quote for string

For Example

type Userinfo struct {
	Uid        int `xorm:"id pk not null autoincr"`
	Username   string `xorm:"unique"`
	Departname string
	Alias      string `xorm:"-"`
	Created    time.Time
}

3.For customize table name, use Table() function, for example:

// 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)

Documents

Please visit GoWalker

FAQ

1.How the xorm tag use both with json?

Use space.

type User struct {
    Name string `json:"name" xorm:"name"`
}

LICENSE

BSD License http://creativecommons.org/licenses/BSD/