gorm/README.md

963 lines
25 KiB
Markdown
Raw Normal View History

2013-10-25 12:24:29 +04:00
# GORM
2014-01-03 10:54:47 +04:00
The fantastic ORM library for Golang, aims to be developer friendly.
2013-10-25 12:24:29 +04:00
2013-10-28 06:09:44 +04:00
## Overview
* Chainable API
2013-11-07 08:12:25 +04:00
* Relations
2013-12-30 08:46:37 +04:00
* Callbacks (before/after create/save/update/delete/find)
* Soft Deletes
* Auto Migrations
* Transactions
2014-07-18 06:16:08 +04:00
* Customizable Logger
2013-11-17 09:22:09 +04:00
* Iteration Support via [Rows](#row--rows)
2013-11-18 10:35:44 +04:00
* Scopes
2013-11-17 09:22:09 +04:00
* sql.Scanner support
2013-11-07 08:12:25 +04:00
* Every feature comes with tests
2013-11-03 06:09:56 +04:00
* Convention Over Configuration
2013-11-07 08:12:25 +04:00
* Developer Friendly
2013-10-28 06:09:44 +04:00
2013-11-02 17:02:54 +04:00
## Conventions
2014-07-18 06:16:08 +04:00
* Table name is the plural of struct name's snake case, you can disable pluralization with `db.SingularTable(true)`, or [Specifying The Table Name For A Struct Permanently With TableName](#specifying-the-table-name-for-a-struct-permanently-with-tablename)
```go
2014-07-18 06:16:08 +04:00
// E.g finding an existing User
var user User
2014-07-18 06:16:08 +04:00
// Gorm will know to use table "users" ("user" if pluralisation has been disabled) for all operations.
db.First(&user)
2014-07-18 06:16:08 +04:00
// creating a new User
DB.Save(&User{Name: "xxx"}) // table "users"
```
2014-07-18 06:16:08 +04:00
* Column name is the snake case of field's name
* Use `Id` field as primary key
* Use tag `sql` to change field's property, change the tag name with `db.SetTagIdentifier(new_name)`
* Use `CreatedAt` to store record's created time if field exists
* Use `UpdatedAt` to store record's updated time if field exists
* Use `DeletedAt` to store record's deleted time if field exists [Soft Delete](#soft-delete)
2014-07-18 06:16:08 +04:00
# Getting Started
2014-07-18 06:16:08 +04:00
## Install
2014-07-18 06:16:08 +04:00
```
go get -u github.com/jinzhu/gorm
```
2014-07-18 06:16:08 +04:00
## Define Models (Structs)
2013-11-17 08:02:22 +04:00
2013-10-27 17:37:31 +04:00
```go
2013-11-15 13:27:16 +04:00
type User struct {
2013-11-26 07:39:07 +04:00
Id int64
Birthday time.Time
Age int64
Name string `sql:"size:255"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt time.Time
2014-07-18 06:16:08 +04:00
Emails []Email // Embedded structs (has many)
BillingAddress Address // Embedded struct (has one)
BillingAddressId sql.NullInt64 // Foreign key of BillingAddress
ShippingAddress Address // Embedded struct (has one)
ShippingAddressId int64 // Foreign key of ShippingAddress
2013-11-26 07:39:07 +04:00
IgnoreMe int64 `sql:"-"` // Ignore this field
2013-10-27 17:37:31 +04:00
}
2013-11-17 08:02:22 +04:00
type Email struct {
2013-11-26 07:39:07 +04:00
Id int64
2014-07-18 06:16:08 +04:00
UserId int64 // Foreign key for User (belongs to)
Email string `sql:"type:varchar(100);"` // Set field's type
2013-11-26 07:39:07 +04:00
Subscribed bool
2013-11-02 17:02:54 +04:00
}
2013-10-28 06:09:44 +04:00
2013-11-17 08:02:22 +04:00
type Address struct {
2013-11-26 07:39:07 +04:00
Id int64
2014-07-18 06:16:08 +04:00
Address1 string `sql:"not null;unique"` // Set field as not nullable and unique
2013-11-26 07:39:07 +04:00
Address2 string `sql:"type:varchar(100);unique"`
Post sql.NullString `sql:not null`
2013-11-02 17:02:54 +04:00
}
```
2014-07-18 06:16:08 +04:00
## Initialize Database
2013-11-03 07:32:25 +04:00
```go
2014-07-18 06:16:08 +04:00
import (
"github.com/jinzhu/gorm"
_ "github.com/lib/pq"
_ "github.com/go-sql-driver/mysql"
_ "github.com/mattn/go-sqlite3"
)
2013-11-03 07:38:53 +04:00
2014-03-15 05:05:08 +04:00
db, err := gorm.Open("postgres", "user=gorm dbname=gorm sslmode=disable")
2014-07-18 06:16:08 +04:00
// db, err := gorm.Open("mysql", "gorm:gorm@/gorm?charset=utf8&parseTime=True")
// db, err := gorm.Open("sqlite3", "/tmp/gorm.db")
2013-11-04 16:32:46 +04:00
// Get database connection handle [*sql.DB](http://golang.org/pkg/database/sql/#DB)
2014-07-18 06:16:08 +04:00
db.DB()
2013-11-03 07:38:53 +04:00
2014-07-18 06:16:08 +04:00
// Then you could invoke `*sql.DB`'s functions with it
db.DB().Ping()
db.DB().SetMaxIdleConns(10)
db.DB().SetMaxOpenConns(100)
2014-07-18 06:16:08 +04:00
// Disable table name's pluralization
2013-11-06 17:43:41 +04:00
db.SingularTable(true)
```
2013-11-03 07:32:25 +04:00
2014-07-18 06:16:08 +04:00
## Migration
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Create table
2013-11-02 17:02:54 +04:00
db.CreateTable(User{})
// Drop table
db.DropTable(User{})
2013-11-07 07:42:36 +04:00
2014-07-18 06:16:08 +04:00
// Automating Migration
db.AutoMigrate(User{})
2013-11-07 07:42:36 +04:00
2014-07-18 06:16:08 +04:00
// Feel free to change your struct, AutoMigrate will keep your database up-to-date.
// Fyi, AutoMigrate will only *add new columns*, it won't update column's type or delete unused columns, to make sure your data is safe.
// If the table is not existing, AutoMigrate will create the table automatically.
2013-11-07 07:42:36 +04:00
2014-07-18 06:16:08 +04:00
// Add index
db.Model(User{}).AddIndex("idx_user_name", "name")
2013-11-07 07:42:36 +04:00
2014-07-18 06:16:08 +04:00
// Multiple column index
db.Model(User{}).AddIndex("idx_user_name_age", "name", "age")
2014-07-18 06:16:08 +04:00
// Add unique index
db.Model(User{}).AddUniqueIndex("idx_user_name", "name")
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
// Multiple column unique index
db.Model(User{}).AddUniqueIndex("idx_user_name_age", "name", "age")
2014-07-09 06:18:07 +04:00
2014-07-18 06:16:08 +04:00
// Remove index
db.Model(User{}).RemoveIndex("idx_user_name")
2013-11-02 17:02:54 +04:00
```
2013-10-27 17:37:31 +04:00
2014-07-18 06:16:08 +04:00
# Basic CRUD
2013-11-23 17:38:31 +04:00
2014-07-18 06:16:08 +04:00
## Create Record
2013-11-23 17:38:31 +04:00
```go
2014-07-18 06:16:08 +04:00
user := User{Name: "Jinzhu", Age: 18, Birthday: time.Now()}
// returns true if record hasnt been saved (primary key `Id` is blank)
2013-11-23 17:38:31 +04:00
db.NewRecord(user) // => true
2014-07-18 06:16:08 +04:00
db.Create(&user)
2013-11-23 17:38:31 +04:00
2014-07-18 06:16:08 +04:00
// will ruturn false after `user` created
db.NewRecord(user) // => false
2013-11-03 06:31:36 +04:00
2014-07-18 06:16:08 +04:00
// You could use `Save` to create record also if its primary key is null
db.Save(&user)
2013-11-05 04:08:42 +04:00
2014-07-18 06:16:08 +04:00
// Associations will be saved automatically when insert the record
2013-11-03 06:31:36 +04:00
user := User{
2013-11-26 07:39:07 +04:00
Name: "jinzhu",
BillingAddress: Address{Address1: "Billing Address - Address 1"},
ShippingAddress: Address{Address1: "Shipping Address - Address 1"},
Emails: []Email{{Email: "jinzhu@example.com"}, {Email: "jinzhu-2@example@example.com"}},
2013-11-03 06:31:36 +04:00
}
2014-07-18 06:16:08 +04:00
db.Create(&user)
//// BEGIN TRANSACTION;
2013-11-03 06:31:36 +04:00
//// INSERT INTO "addresses" (address1) VALUES ("Billing Address - Address 1");
//// INSERT INTO "addresses" (address1) VALUES ("Shipping Address - Address 1");
//// INSERT INTO "users" (name,billing_address_id,shipping_address_id) VALUES ("jinzhu", 1, 2);
//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu@example.com");
//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu-2@example.com");
//// COMMIT;
2013-11-03 06:31:36 +04:00
```
2014-07-18 06:16:08 +04:00
Refer [Query With Related](#query-with-related) for how to find associations
2013-11-02 17:02:54 +04:00
## Query
```go
// Get the first record
db.First(&user)
//// SELECT * FROM users ORDER BY id LIMIT 1;
2013-10-27 17:37:31 +04:00
// Get the last record
db.Last(&user)
//// SELECT * FROM users ORDER BY id DESC LIMIT 1;
// Get all records
2013-11-02 17:02:54 +04:00
db.Find(&users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users;
2013-11-02 17:02:54 +04:00
2013-11-15 13:27:16 +04:00
// Get record with primary key
2013-11-02 17:02:54 +04:00
db.First(&user, 10)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users WHERE id = 10;
2013-11-02 17:02:54 +04:00
```
2014-07-18 06:16:08 +04:00
### Query With Where (Plain SQL)
2013-11-02 17:02:54 +04:00
```go
// Get the first matched record
2013-10-27 17:37:31 +04:00
db.Where("name = ?", "jinzhu").First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE name = 'jinzhu' limit 1;
2013-10-27 17:37:31 +04:00
2013-11-02 17:02:54 +04:00
// Get all matched records
2013-10-27 17:37:31 +04:00
db.Where("name = ?", "jinzhu").Find(&users)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE name = 'jinzhu';
2013-10-27 17:37:31 +04:00
db.Where("name <> ?", "jinzhu").Find(&users)
2013-11-02 17:02:54 +04:00
// IN
2013-11-03 17:19:38 +04:00
db.Where("name in (?)", []string{"jinzhu", "jinzhu 2"}).Find(&users)
2013-11-02 17:02:54 +04:00
// LIKE
2013-10-28 05:05:44 +04:00
db.Where("name LIKE ?", "%jin%").Find(&users)
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
// AND
2013-11-02 17:02:54 +04:00
db.Where("name = ? and age >= ?", "jinzhu", "22").Find(&users)
```
2013-11-03 06:09:56 +04:00
### Query With Where (Struct & Map)
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Struct
2013-10-29 13:37:45 +04:00
db.Where(&User{Name: "jinzhu", Age: 20}).First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE name = "jinzhu" AND age = 20 LIMIT 1;
2014-07-18 06:16:08 +04:00
// Map
2013-11-02 17:02:54 +04:00
db.Where(map[string]interface{}{"name": "jinzhu", "age": 20}).Find(&users)
//// SELECT * FROM users WHERE name = "jinzhu" AND age = 20;
2013-11-03 06:09:56 +04:00
2014-07-18 06:16:08 +04:00
// Slice of primary keys
2013-11-03 06:09:56 +04:00
db.Where([]int64{20, 21, 22}).Find(&users)
//// SELECT * FROM users WHERE id IN (20, 21, 22);
2013-11-02 17:02:54 +04:00
```
2013-11-03 06:09:56 +04:00
### Query With Not
2013-11-02 17:02:54 +04:00
```go
db.Not("name", "jinzhu").First(&user)
//// SELECT * FROM users WHERE name <> "jinzhu" LIMIT 1;
2013-10-27 17:37:31 +04:00
2013-11-02 17:02:54 +04:00
// Not In
db.Not("name", []string{"jinzhu", "jinzhu 2"}).Find(&users)
//// SELECT * FROM users WHERE name NOT IN ("jinzhu", "jinzhu 2");
2014-07-18 06:16:08 +04:00
// Not In slice of primary keys
2013-10-31 14:12:18 +04:00
db.Not([]int64{1,2,3}).First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE id NOT IN (1,2,3);
2013-10-31 14:12:18 +04:00
db.Not([]int64{}).First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users;
2014-07-18 06:16:08 +04:00
// Plain SQL
2013-10-31 18:49:48 +04:00
db.Not("name = ?", "jinzhu").First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE NOT(name = "jinzhu");
2014-07-18 06:16:08 +04:00
// Struct
2013-10-31 14:12:18 +04:00
db.Not(User{Name: "jinzhu"}).First(&user)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE name <> "jinzhu";
```
2013-11-03 06:49:09 +04:00
### Query With Inline Condition
2013-10-31 14:12:18 +04:00
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Get by primary key
2013-10-27 18:36:43 +04:00
db.First(&user, 23)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE id = 23 LIMIT 1;
2014-07-18 06:16:08 +04:00
// Plain SQL
2013-11-02 17:02:54 +04:00
db.Find(&user, "name = ?", "jinzhu")
//// SELECT * FROM users WHERE name = "jinzhu";
2014-07-18 06:16:08 +04:00
db.Find(&users, "name <> ? AND age > ?", "jinzhu", 20)
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE name <> "jinzhu" AND age > 20;
2014-07-18 06:16:08 +04:00
// Struct
2013-11-02 17:02:54 +04:00
db.Find(&users, User{Age: 20})
//// SELECT * FROM users WHERE age = 20;
2014-07-18 06:16:08 +04:00
// Map
2013-10-29 13:52:37 +04:00
db.Find(&users, map[string]interface{}{"age": 20})
2013-11-02 17:02:54 +04:00
//// SELECT * FROM users WHERE age = 20;
```
2013-11-03 06:09:56 +04:00
### Query With Or
2013-11-03 06:49:09 +04:00
```go
2013-11-03 06:09:56 +04:00
db.Where("role = ?", "admin").Or("role = ?", "super_admin").Find(&users)
//// SELECT * FROM users WHERE role = 'admin' OR role = 'super_admin';
2014-07-18 06:16:08 +04:00
// Struct
2013-11-03 06:09:56 +04:00
db.Where("name = 'jinzhu'").Or(User{Name: "jinzhu 2"}).Find(&users)
//// SELECT * FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2';
2014-07-18 06:16:08 +04:00
// Map
2013-11-03 06:09:56 +04:00
db.Where("name = 'jinzhu'").Or(map[string]interface{}{"name": "jinzhu 2"}).Find(&users)
```
### Query With Related
```go
2014-07-18 06:16:08 +04:00
// Find associations with guessed foreign key
db.Model(&user).Related(&emails)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM emails WHERE user_id = 111; // 111 is user's Id
db.Model(&email).Related(&user)
2013-11-15 13:27:16 +04:00
//// SELECT * FROM users WHERE id = 111; // 111 is email's UserId
2014-07-18 06:16:08 +04:00
// Find associations with specified foreign key
db.Model(&user).Related(&address1, "BillingAddressId")
//// SELECT * FROM addresses WHERE id = 123; // 123 is user's BillingAddressId
```
2013-11-03 06:09:56 +04:00
### Query Chains
2014-07-18 06:16:08 +04:00
Gorm has a chainable API, you could use it like this
2013-11-03 06:09:56 +04:00
```go
2013-11-03 06:49:09 +04:00
db.Where("name <> ?","jinzhu").Where("age >= ? and role <> ?",20,"admin").Find(&users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users WHERE name <> 'jinzhu' AND age >= 20 AND role <> 'admin';
db.Where("role = ?", "admin").Or("role = ?", "super_admin").Not("name = ?", "jinzhu").Find(&users)
```
## Update
```go
2014-07-18 06:16:08 +04:00
// Update an existing struct
db.First(&user)
2013-11-03 06:09:56 +04:00
user.Name = "jinzhu 2"
user.Age = 100
db.Save(&user)
2013-11-17 17:39:50 +04:00
//// UPDATE users SET name='jinzhu 2', age=100, updated_at = '2013-11-17 21:34:10' WHERE id=111;
2013-11-03 06:09:56 +04:00
2014-07-18 06:16:08 +04:00
// Update an attribute if it is changed
2013-11-03 06:09:56 +04:00
db.Model(&user).Update("name", "hello")
2013-11-17 17:39:50 +04:00
//// UPDATE users SET name='hello', updated_at = '2013-11-17 21:34:10' WHERE id=111;
2013-11-03 06:09:56 +04:00
db.First(&user, 111).Update("name", "hello")
//// SELECT * FROM users LIMIT 1;
2013-11-17 17:39:50 +04:00
//// UPDATE users SET name='hello', updated_at = '2013-11-17 21:34:10' WHERE id=111;
2013-11-03 06:09:56 +04:00
2014-07-18 06:16:08 +04:00
// Update multiple attributes if they are changed
2013-11-03 06:09:56 +04:00
db.Model(&user).Updates(User{Name: "hello", Age: 18})
2013-11-17 17:39:50 +04:00
//// UPDATE users SET name='hello', age=18, updated_at = '2013-11-17 21:34:10' WHERE id = 111;
2013-11-03 06:09:56 +04:00
```
2014-07-18 06:16:08 +04:00
### Update Without Callbacks
By default, update will call BeforeUpdate, AfterUpdate callbacks, if you want to update w/o callbacks:
2013-11-17 17:39:50 +04:00
```go
db.Model(&user).UpdateColumn("name", "hello")
//// UPDATE users SET name='hello' WHERE id = 111;
db.Model(&user).UpdateColumns(User{Name: "hello", Age: 18})
//// UPDATE users SET name='hello', age=18 WHERE id = 111;
```
2014-07-18 06:16:08 +04:00
### Batch Updates
2014-06-05 14:23:22 +04:00
```go
2014-07-18 06:16:08 +04:00
db.Table("users").Where("id = ?", 10).Updates(map[string]interface{}{"name": "hello", "age": 18})
//// UPDATE users SET name='hello', age=18 WHERE id = 10;
db.Model(User{}).Updates(User{Name: "hello", Age: 18})
//// UPDATE users SET name='hello', age=18;
// Callbacks won't be run when do batch updates
// You may would like to know how many records updated when do batch updates
// You could get it with `RowsAffected`
2014-06-05 14:23:22 +04:00
db.Model(User{}).Updates(User{Name: "hello", Age: 18}).RowsAffected
```
2013-11-03 06:09:56 +04:00
2014-07-18 06:16:08 +04:00
## Delete
2013-11-03 06:09:56 +04:00
```go
2014-07-18 06:16:08 +04:00
// Delete an existing record
2013-11-03 06:09:56 +04:00
db.Delete(&email)
// DELETE from emails where id=10;
```
2014-07-18 06:16:08 +04:00
### Batch Delete
2013-11-03 06:09:56 +04:00
```go
db.Where("email LIKE ?", "%jinzhu%").Delete(Email{})
// DELETE from emails where email LIKE "%jinhu%";
```
### Soft Delete
2014-07-18 06:16:08 +04:00
If struct has `DeletedAt` field, it will get soft delete ability automatically!
Then it won't be deleted from database permanently when call `Delete`.
2013-11-03 06:09:56 +04:00
```go
db.Delete(&user)
//// UPDATE users SET deleted_at="2013-10-29 10:23" WHERE id = 111;
2014-07-18 06:16:08 +04:00
// Batch Delete
2013-11-03 06:09:56 +04:00
db.Where("age = ?", 20).Delete(&User{})
//// UPDATE users SET deleted_at="2013-10-29 10:23" WHERE age = 20;
2014-07-18 06:16:08 +04:00
// Soft deleted records will be ignored when query them
2013-11-03 06:09:56 +04:00
db.Where("age = 20").Find(&user)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM users WHERE age = 20 AND (deleted_at IS NULL AND deleted_at <= '0001-01-02');
2013-11-03 06:09:56 +04:00
2013-11-15 13:27:16 +04:00
// Find soft deleted records with Unscoped
2013-11-03 06:09:56 +04:00
db.Unscoped().Where("age = 20").Find(&users)
//// SELECT * FROM users WHERE age = 20;
2013-11-15 13:27:16 +04:00
// Delete record permanently with Unscoped
2013-11-03 06:09:56 +04:00
db.Unscoped().Delete(&order)
// DELETE FROM orders WHERE id=10;
```
2014-07-18 06:16:08 +04:00
## Advanced Usage
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
## FirstOrInit
2013-11-03 06:49:09 +04:00
2014-07-18 06:16:08 +04:00
Get the first matched record, or initialize a record with search conditions.
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.FirstOrInit(&user, User{Name: "non_existing"})
2014-07-18 06:16:08 +04:00
//// user -> User{Name: "non_existing"}
2013-10-27 18:18:06 +04:00
2014-07-18 06:16:08 +04:00
// Found
2013-10-29 16:32:27 +04:00
db.Where(User{Name: "Jinzhu"}).FirstOrInit(&user)
2014-07-18 06:16:08 +04:00
//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
2013-11-02 17:02:54 +04:00
db.FirstOrInit(&user, map[string]interface{}{"name": "jinzhu"})
2014-07-18 06:16:08 +04:00
//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
2013-11-02 17:02:54 +04:00
```
2014-07-18 06:16:08 +04:00
### Attrs
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
Ignore some values when searching, but use them to initialize the struct if record is not found.
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "non_existing"}).Attrs(User{Age: 20}).FirstOrInit(&user)
//// SELECT * FROM USERS WHERE name = 'non_existing';
2014-07-18 06:16:08 +04:00
//// user -> User{Name: "non_existing", Age: 20}
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "noexisting_user"}).Attrs("age", 20).FirstOrInit(&user)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM USERS WHERE name = 'non_existing';
//// user -> User{Name: "non_existing", Age: 20}
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
// Found
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "Jinzhu"}).Attrs(User{Age: 30}).FirstOrInit(&user)
//// SELECT * FROM USERS WHERE name = jinzhu';
2014-07-18 06:16:08 +04:00
//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
2013-11-03 06:18:16 +04:00
```
2013-10-30 11:33:34 +04:00
2014-07-18 06:16:08 +04:00
### Assign
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
Ignore some values when searching, but assign it to the result regardless it is found or not.
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "non_existing"}).Assign(User{Age: 20}).FirstOrInit(&user)
2014-07-18 06:16:08 +04:00
//// user -> User{Name: "non_existing", Age: 20}
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
// Found
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "Jinzhu"}).Assign(User{Age: 30}).FirstOrInit(&user)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM USERS WHERE name = jinzhu';
//// user -> User{Id: 111, Name: "Jinzhu", Age: 30}
2013-11-02 17:02:54 +04:00
```
## FirstOrCreate
2014-07-18 06:16:08 +04:00
Get the first matched record, or create with search conditions.
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.FirstOrCreate(&user, User{Name: "non_existing"})
2014-07-18 06:16:08 +04:00
//// INSERT INTO "users" (name) VALUES ("non_existing");
//// user -> User{Id: 112, Name: "non_existing"}
2013-11-02 17:02:54 +04:00
2014-07-18 06:16:08 +04:00
// Found
2013-10-29 16:32:27 +04:00
db.Where(User{Name: "Jinzhu"}).FirstOrCreate(&user)
2014-07-18 06:16:08 +04:00
//// user -> User{Id: 111, Name: "Jinzhu"}
2013-11-02 17:02:54 +04:00
```
2014-07-18 06:16:08 +04:00
### Attrs
2013-10-29 16:32:27 +04:00
2014-07-18 06:16:08 +04:00
Ignore some values when searching, but use them to create the struct if record is not found. like `FirstOrInit`
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "non_existing"}).Attrs(User{Age: 20}).FirstOrCreate(&user)
//// SELECT * FROM users WHERE name = 'non_existing';
2014-07-18 06:16:08 +04:00
//// INSERT INTO "users" (name, age) VALUES ("non_existing", 20);
//// user -> User{Id: 112, Name: "non_existing", Age: 20}
2013-10-31 05:34:27 +04:00
2014-07-18 06:16:08 +04:00
// Found
2013-11-03 06:09:56 +04:00
db.Where(User{Name: "jinzhu"}).Attrs(User{Age: 30}).FirstOrCreate(&user)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM users WHERE name = 'jinzhu';
//// user -> User{Id: 111, Name: "jinzhu", Age: 20}
2013-11-02 17:02:54 +04:00
```
2014-07-18 06:16:08 +04:00
### Assign
2013-10-31 05:34:27 +04:00
2014-07-18 06:16:08 +04:00
Ignore some values when searching, but assign it to the record regardless it is found or not, then save back to database. like `FirstOrInit`
2013-10-31 05:34:27 +04:00
2013-11-02 17:02:54 +04:00
```go
2014-07-18 06:16:08 +04:00
// Unfound
2013-11-02 17:02:54 +04:00
db.Where(User{Name: "non_existing"}).Assign(User{Age: 20}).FirstOrCreate(&user)
2014-07-18 06:16:08 +04:00
//// SELECT * FROM users WHERE name = 'non_existing';
//// INSERT INTO "users" (name, age) VALUES ("non_existing", 20);
2013-11-02 17:02:54 +04:00
//// user -> User{Id: 112, Name: "non_existing", Age: 20}
2014-07-18 06:16:08 +04:00
// Found
2013-11-03 06:09:56 +04:00
db.Where(User{Name: "jinzhu"}).Assign(User{Age: 30}).FirstOrCreate(&user)
//// SELECT * FROM users WHERE name = 'jinzhu';
2013-11-02 17:02:54 +04:00
//// UPDATE users SET age=30 WHERE id = 111;
2014-07-18 06:16:08 +04:00
//// user -> User{Id: 111, Name: "jinzhu", Age: 30}
2013-11-02 17:02:54 +04:00
```
2013-11-03 06:09:56 +04:00
## Select
2013-11-02 17:02:54 +04:00
```go
2013-11-03 06:09:56 +04:00
db.Select("name, age").Find(&users)
//// SELECT name, age FROM users;
```
2013-10-30 11:33:34 +04:00
2013-11-03 06:09:56 +04:00
## Order
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
```go
2013-10-27 17:37:31 +04:00
db.Order("age desc, name").Find(&users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users ORDER BY age desc, name;
2013-11-15 13:27:16 +04:00
// Multiple orders
2013-10-27 18:18:06 +04:00
db.Order("age desc").Order("name").Find(&users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users ORDER BY age desc, name;
2013-10-28 05:18:34 +04:00
// ReOrder
db.Order("age desc").Find(&users1).Order("age", true).Find(&users2)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users ORDER BY age desc; (users1)
//// SELECT * FROM users ORDER BY age; (users2)
```
2013-10-28 05:18:34 +04:00
2013-11-03 06:09:56 +04:00
## Limit
```go
2013-10-27 17:37:31 +04:00
db.Limit(3).Find(&users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users LIMIT 3;
2013-10-27 17:37:31 +04:00
2014-07-18 06:16:08 +04:00
// Cancel limit condition with -1
2013-11-03 06:09:56 +04:00
db.Limit(10).Find(&users1).Limit(-1).Find(&users2)
//// SELECT * FROM users LIMIT 10; (users1)
//// SELECT * FROM users; (users2)
```
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
## Offset
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
```go
db.Offset(3).Find(&users)
//// SELECT * FROM users OFFSET 3;
2013-10-27 17:37:31 +04:00
2014-07-18 06:16:08 +04:00
// Cancel offset condition with -1
2013-11-03 06:09:56 +04:00
db.Offset(10).Find(&users1).Offset(-1).Find(&users2)
//// SELECT * FROM users OFFSET 10; (users1)
//// SELECT * FROM users; (users2)
```
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
## Count
2013-10-27 18:18:06 +04:00
2013-11-03 06:09:56 +04:00
```go
db.Where("name = ?", "jinzhu").Or("name = ?", "jinzhu 2").Find(&users).Count(&count)
//// SELECT * from USERS WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (users)
//// SELECT count(*) FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (count)
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
db.Model(User{}).Where("name = ?", "jinzhu").Count(&count)
2014-07-18 06:16:08 +04:00
//// SELECT count(*) FROM users WHERE name = 'jinzhu'; (count)
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
db.Table("deleted_users").Count(&count)
//// SELECT count(*) FROM deleted_users;
```
## Pluck
2013-10-27 18:18:06 +04:00
2014-07-18 06:16:08 +04:00
Get selected attributes as map
2013-11-03 06:09:56 +04:00
```go
2013-10-27 17:37:31 +04:00
var ages []int64
2013-10-28 05:05:44 +04:00
db.Find(&users).Pluck("age", &ages)
2013-11-03 06:09:56 +04:00
2013-10-27 18:18:06 +04:00
var names []string
db.Model(&User{}).Pluck("name", &names)
2013-10-27 17:37:31 +04:00
2013-11-03 06:09:56 +04:00
db.Table("deleted_users").Pluck("name", &names)
2013-11-11 17:55:44 +04:00
2014-07-18 06:16:08 +04:00
// Requesting more than one column? Do it like this:
2013-11-11 17:55:44 +04:00
db.Select("name, age").Find(&users)
2013-11-03 06:09:56 +04:00
```
2014-07-18 06:16:08 +04:00
## Raw SQL
```go
db.Exec("DROP TABLE users;")
db.Exec("UPDATE orders SET shipped_at=? WHERE id IN (?)", time.Now, []int64{11,22,33})
```
## Row & Rows
You are even possible to get query result as `*sql.Row` or `*sql.Rows`
```go
row := db.Table("users").Where("name = ?", "jinzhu").Select("name, age").Row() // (*sql.Row)
row.Scan(&name, &age)
rows, err := db.Model(User{}).Where("name = ?", "jinzhu").Select("name, age, email").Rows() // (*sql.Rows, error)
defer rows.Close()
for rows.Next() {
...
rows.Scan(&name, &age, &email)
...
}
// Raw SQL
rows, err := db.Raw("select name, age, email from users where name = ?", "jinzhu").Rows() // (*sql.Rows, error)
defer rows.Close()
for rows.Next() {
...
rows.Scan(&name, &age, &email)
...
}
```
## Scan
Scan results into another struct.
```go
type Result struct {
Name string
Age int
}
var result Result
db.Table("users").Select("name, age").Where("name = ?", 3).Scan(&result)
// Raw SQL
db.Raw("SELECT name, age FROM users WHERE name = ?", 3).Scan(&result)
```
## Group & Having
```go
rows, err := db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Rows()
for rows.Next() {
...
}
rows, err := db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Having("sum(amount) > ?", 100).Rows()
for rows.Next() {
...
}
type Result struct {
Date time.Time
Total int64
}
db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Having("sum(amount) > ?", 100).Scan(&results)
```
## Joins
```go
rows, err := db.Table("users").Select("users.name, emails.email").Joins("left join emails on emails.user_id = users.id").Rows()
for rows.Next() {
...
}
db.Table("users").Select("users.name, emails.email").Joins("left join emails on emails.user_id = users.id").Scan(&results)
```
## Transactions
2014-07-18 06:16:08 +04:00
All individual save and delete operations are run in a transaction by default.
```go
2014-07-18 06:16:08 +04:00
// begin
tx := db.Begin()
// rollback
tx.Rollback()
// commit
tx.Commit()
```
2014-07-18 06:16:08 +04:00
## Scopes
```go
func AmountGreaterThan1000(db *gorm.DB) *gorm.DB {
return db.Where("amount > ?", 1000)
}
func PaidWithCreditCard(db *gorm.DB) *gorm.DB {
return db.Where("pay_mode_sign = ?", "C")
}
func PaidWithCod(db *gorm.DB) *gorm.DB {
return db.Where("pay_mode_sign = ?", "C")
}
func OrderStatus(status []string) func (db *gorm.DB) *gorm.DB {
return func (db *gorm.DB) *gorm.DB {
return db.Scopes(AmountGreaterThan1000).Where("status in (?)", status)
}
}
db.Scopes(AmountGreaterThan1000, PaidWithCreditCard).Find(&orders)
// Find all credit card orders and amount greater than 1000
db.Scopes(AmountGreaterThan1000, PaidWithCod).Find(&orders)
// Find all COD orders and amount greater than 1000
db.Scopes(OrderStatus([]string{"paid", "shipped"})).Find(&orders)
// Find all paid, shipped orders
```
2013-11-03 06:09:56 +04:00
## Callbacks
2013-10-27 17:37:31 +04:00
2014-07-18 06:16:08 +04:00
Callbacks are methods defined on the pointer of struct.
If any callback returns an error, gorm will stop future operations and rollback all changes.
2013-11-03 06:09:56 +04:00
2014-07-18 06:16:08 +04:00
Here is the list of all available callbacks:
(listed in the same order in which they will get called during the respective operations)
2013-11-03 06:09:56 +04:00
### Creating An Object
2013-11-03 06:09:56 +04:00
2013-11-24 04:29:56 +04:00
```go
BeforeSave
BeforeCreate
// save before associations
// save self
// save after associations
AfterCreate
AfterSave
```
### Updating An Object
2013-11-24 04:29:56 +04:00
```go
BeforeSave
BeforeUpdate
// save before associations
// save self
// save after associations
AfterUpdate
AfterSave
```
### Destroying An Object
2013-11-24 04:29:56 +04:00
```go
BeforeDelete
// delete self
AfterDelete
```
2013-12-30 08:46:37 +04:00
### After Find
```go
2014-07-18 06:16:08 +04:00
// load data from database
2013-12-30 08:46:37 +04:00
AfterFind
```
2014-07-18 06:16:08 +04:00
### Example
2013-11-15 13:27:16 +04:00
2013-11-03 06:09:56 +04:00
```go
func (u *User) BeforeUpdate() (err error) {
if u.readonly() {
2014-07-18 06:16:08 +04:00
err = errors.New("read only user")
2013-11-03 06:09:56 +04:00
}
return
}
2013-11-11 15:06:26 +04:00
2014-07-18 06:16:08 +04:00
// Rollback the insertion if user's id greater than 1000
2013-11-11 15:06:26 +04:00
func (u *User) AfterCreate() (err error) {
2014-07-18 06:16:08 +04:00
if (u.Id > 1000) {
err = errors.New("user id is already greater than 1000")
2013-11-11 15:06:26 +04:00
}
return
}
2013-11-03 06:09:56 +04:00
```
2013-10-27 17:37:31 +04:00
2014-07-18 06:16:08 +04:00
As you know, save/delete operations in gorm are running in a transaction,
This is means if changes made in the transaction is not visiable unless it is commited,
So if you want to use those changes in your callbacks, you need to run SQL in same transaction.
Fortunately, gorm support pass transaction to callbacks as you needed, you could do it like this:
2013-11-24 04:29:56 +04:00
```go
func (u *User) AfterCreate(tx *gorm.DB) (err error) {
tx.Model(u).Update("role", "admin")
return
}
```
## Specifying The Table Name
2013-11-01 11:01:39 +04:00
2013-11-03 07:32:25 +04:00
```go
2014-07-18 06:16:08 +04:00
// Create `deleted_users` table with struct User's definition
2013-10-28 16:27:25 +04:00
db.Table("deleted_users").CreateTable(&User{})
2013-11-03 06:09:56 +04:00
2013-10-28 16:27:25 +04:00
var deleted_users []User
db.Table("deleted_users").Find(&deleted_users)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM deleted_users;
2013-10-28 16:27:25 +04:00
2013-11-03 06:09:56 +04:00
db.Table("deleted_users").Where("name = ?", "jinzhu").Delete()
//// DELETE FROM deleted_users WHERE name = 'jinzhu';
```
2013-10-28 17:52:22 +04:00
### Specifying The Table Name For A Struct Permanently with TableName
```go
type Cart struct {
}
func (c Cart) TableName() string {
2013-11-26 07:39:07 +04:00
return "shopping_cart"
}
2013-11-06 18:20:26 +04:00
func (u User) TableName() string {
if u.Role == "admin" {
return "admin_users"
} else {
return "users"
}
}
```
2014-07-18 06:16:08 +04:00
## Error Handling
2013-11-18 10:35:44 +04:00
```go
2014-07-18 06:16:08 +04:00
query := db.Where("name = ?", "jinzhu").First(&user)
query := db.First(&user).Limit(10).Find(&users)
// query.Error will return the last happened error
2013-11-18 10:35:44 +04:00
2014-07-18 06:16:08 +04:00
// So you could do error handing in your application like this:
if err := db.Where("name = ?", "jinzhu").First(&user).Error; err != nil {
// error handling...
2013-11-18 10:35:44 +04:00
}
2014-07-18 06:16:08 +04:00
// RecordNotFound
// If no record found when you query data, gorm will return RecordNotFound error, you could check it like this:
db.Where("name = ?", "hello world").First(&User{}).Error == gorm.RecordNotFound
// Or use the shortcut method
db.Where("name = ?", "hello world").First(&user).RecordNotFound()
2013-11-18 10:35:44 +04:00
2014-07-18 06:16:08 +04:00
if db.Model(&user).Related(&credit_card).RecordNotFound() {
// no credit card found error handling
2013-11-18 10:35:44 +04:00
}
```
2013-11-11 13:50:27 +04:00
## Logger
2014-07-18 06:16:08 +04:00
Gorm has built-in logger support
2013-11-11 13:50:27 +04:00
```go
2014-07-18 06:16:08 +04:00
// Enable Logger
2013-11-11 13:50:27 +04:00
db.LogMode(true)
2014-01-03 15:23:41 +04:00
2014-07-18 06:16:08 +04:00
// Diable Logger
2013-11-11 13:50:27 +04:00
db.LogMode(false)
2014-07-18 06:16:08 +04:00
// Debug a single operation
2013-11-11 13:50:27 +04:00
db.Debug().Where("name = ?", "jinzhu").First(&User{})
```
2014-07-18 06:16:08 +04:00
![logger](https://raw.github.com/jinzhu/gorm/master/images/logger.png)
2013-11-17 09:22:09 +04:00
2014-07-18 06:16:08 +04:00
### Customize Logger
2014-06-01 02:12:31 +04:00
```go
2014-07-18 06:16:08 +04:00
// Refer gorm's default logger for how to: https://github.com/jinzhu/gorm/blob/master/logger.go#files
db.SetLogger(gorm.Logger{revel.TRACE})
db.SetLogger(log.New(os.Stdout, "\r\n", 0))
2014-06-01 02:12:31 +04:00
```
2014-07-18 06:16:08 +04:00
## Existing Schema
2013-10-28 07:24:51 +04:00
2014-07-18 06:16:08 +04:00
If you have an existing database schema, and the primary key field is different from `id`, you can add a tag to the field structure to specify that this field is a primary key.
2013-11-03 06:09:56 +04:00
```go
2014-07-18 06:16:08 +04:00
type Animal struct {
AnimalId int64 `primaryKey:"yes"`
Birthday time.Time
Age int64
}
2013-10-27 17:37:31 +04:00
```
2014-07-18 06:16:08 +04:00
## More examples with query chain
2013-10-27 18:18:06 +04:00
2013-11-03 06:09:56 +04:00
```go
2013-10-27 18:18:06 +04:00
db.First(&first_article).Count(&total_count).Limit(10).Find(&first_page_articles).Offset(10).Find(&second_page_articles)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM articles LIMIT 1; (first_article)
2013-11-15 13:27:16 +04:00
//// SELECT count(*) FROM articles; (total_count)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM articles LIMIT 10; (first_page_articles)
//// SELECT * FROM articles LIMIT 10 OFFSET 10; (second_page_articles)
2013-10-27 18:18:06 +04:00
2013-11-15 13:27:16 +04:00
2013-11-03 06:09:56 +04:00
db.Where("created_at > ?", "2013-10-10").Find(&cancelled_orders, "state = ?", "cancelled").Find(&shipped_orders, "state = ?", "shipped")
//// SELECT * FROM orders WHERE created_at > '2013/10/10' AND state = 'cancelled'; (cancelled_orders)
//// SELECT * FROM orders WHERE created_at > '2013/10/10' AND state = 'shipped'; (shipped_orders)
2013-10-27 18:18:06 +04:00
2013-11-15 13:27:16 +04:00
// Use variables to keep query chain
todays_orders := db.Where("created_at > ?", "2013-10-29")
cancelled_orders := todays_orders.Where("state = ?", "cancelled")
shipped_orders := todays_orders.Where("state = ?", "shipped")
2014-07-18 06:16:08 +04:00
// Search with shared conditions for different tables
2013-11-03 06:09:56 +04:00
db.Where("product_name = ?", "fancy_product").Find(&orders).Find(&shopping_carts)
//// SELECT * FROM orders WHERE product_name = 'fancy_product'; (orders)
//// SELECT * FROM carts WHERE product_name = 'fancy_product'; (shopping_carts)
2013-10-27 18:18:06 +04:00
2013-11-15 13:27:16 +04:00
// Search with shared conditions from different tables with specified table
db.Where("mail_type = ?", "TEXT").Find(&users1).Table("deleted_users").Find(&users2)
2013-11-03 06:09:56 +04:00
//// SELECT * FROM users WHERE mail_type = 'TEXT'; (users1)
//// SELECT * FROM deleted_users WHERE mail_type = 'TEXT'; (users2)
2013-10-28 16:27:25 +04:00
2013-10-30 11:33:34 +04:00
2014-07-18 06:16:08 +04:00
// FirstOrCreate example
2013-11-15 13:27:16 +04:00
db.Where("email = ?", "x@example.org").Attrs(User{RegisteredIp: "111.111.111.111"}).FirstOrCreate(&user)
//// SELECT * FROM users WHERE email = 'x@example.org';
2014-07-18 06:16:08 +04:00
//// INSERT INTO "users" (email,registered_ip) VALUES ("x@example.org", "111.111.111.111") // if record not found
2013-10-27 18:18:06 +04:00
```
2013-10-26 11:18:44 +04:00
## TODO
2014-07-18 06:16:08 +04:00
* db.RegisterFuncation("Search", func() {})
db.Model(&[]User{}).Limit(10).Do("Search", "search func's argument")
2014-01-03 10:54:47 +04:00
db.Mode(&User{}).Do("EditForm").Get("edit_form_html")
DefaultValue, DefaultTimeZone, R/W Splitting, Validation
* Getter/Setter
share or not? transaction?
* Github Pages
2013-11-17 16:38:43 +04:00
* Includes
2014-06-01 02:12:31 +04:00
* AlertColumn, DropColumn
2013-10-25 12:24:29 +04:00
2013-10-26 11:18:44 +04:00
# Author
2013-10-25 12:24:29 +04:00
2013-11-03 06:09:56 +04:00
**jinzhu**
2013-10-25 12:24:29 +04:00
2013-10-26 11:18:44 +04:00
* <http://github.com/jinzhu>
* <wosmvp@gmail.com>
* <http://twitter.com/zhangjinzhu>
2013-11-12 03:13:58 +04:00
## License
Released under the [MIT License](http://www.opensource.org/licenses/MIT).
2014-01-04 09:38:41 +04:00
[![GoDoc](https://godoc.org/github.com/jinzhu/gorm?status.png)](http://godoc.org/github.com/jinzhu/gorm)