GORM 官方支持的数据库类型有:MySQL, PostgreSQL, SQLite, SQL Server 和 TiDB

MySQL

  1. import (
  2. "gorm.io/driver/mysql"
  3. "gorm.io/gorm"
  4. )
  5. func main() {
  6. // 参考 https://github.com/go-sql-driver/mysql#dsn-data-source-name 获取详情
  7. dsn := "user:pass@tcp(127.0.0.1:3306)/dbname?charset=utf8mb4&parseTime=True&loc=Local"
  8. db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
  9. }

注意:想要正确的处理 time.Time ,您需要带上 parseTime 参数, (更多参数) 要支持完整的 UTF-8 编码,您需要将 charset=utf8 更改为 charset=utf8mb4 查看 此文章 获取详情

MySQL 驱动程序提供了 一些高级配置 可以在初始化过程中使用,例如:

  1. db, err := gorm.Open(mysql.New(mysql.Config{
  2. DSN: "gorm:gorm@tcp(127.0.0.1:3306)/gorm?charset=utf8&parseTime=True&loc=Local", // DSN data source name
  3. DefaultStringSize: 256, // string 类型字段的默认长度
  4. DisableDatetimePrecision: true, // 禁用 datetime 精度,MySQL 5.6 之前的数据库不支持
  5. DontSupportRenameIndex: true, // 重命名索引时采用删除并新建的方式,MySQL 5.7 之前的数据库和 MariaDB 不支持重命名索引
  6. DontSupportRenameColumn: true, // 用 `change` 重命名列,MySQL 8 之前的数据库和 MariaDB 不支持重命名列
  7. SkipInitializeWithVersion: false, // 根据当前 MySQL 版本自动配置
  8. }), &gorm.Config{})

自定义驱动

GORM 允许通过 DriverName 选项自定义 MySQL 驱动,例如:

  1. import (
  2. _ "example.com/my_mysql_driver"
  3. "gorm.io/driver/mysql"
  4. "gorm.io/gorm"
  5. )
  6. db, err := gorm.Open(mysql.New(mysql.Config{
  7. DriverName: "my_mysql_driver",
  8. DSN: "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local", // data source name, 详情参考:https://github.com/go-sql-driver/mysql#dsn-data-source-name
  9. }), &gorm.Config{})

现有的数据库连接

GORM 允许通过一个现有的数据库连接来初始化 *gorm.DB

  1. import (
  2. "database/sql"
  3. "gorm.io/driver/mysql"
  4. "gorm.io/gorm"
  5. )
  6. sqlDB, err := sql.Open("mysql", "mydb_dsn")
  7. gormDB, err := gorm.Open(mysql.New(mysql.Config{
  8. Conn: sqlDB,
  9. }), &gorm.Config{})

PostgreSQL

  1. import (
  2. "gorm.io/driver/postgres"
  3. "gorm.io/gorm"
  4. )
  5. dsn := "host=localhost user=gorm password=gorm dbname=gorm port=9920 sslmode=disable TimeZone=Asia/Shanghai"
  6. db, err := gorm.Open(postgres.Open(dsn), &gorm.Config{})

我们使用 pgx 作为 postgres 的 database/sql 驱动,默认情况下,它会启用 prepared statement 缓存,你可以这样禁用它:

  1. // https://github.com/go-gorm/postgres
  2. db, err := gorm.Open(postgres.New(postgres.Config{
  3. DSN: "user=gorm password=gorm dbname=gorm port=9920 sslmode=disable TimeZone=Asia/Shanghai",
  4. PreferSimpleProtocol: true, // disables implicit prepared statement usage
  5. }), &gorm.Config{})

自定义驱动

GORM 允许通过 DriverName 选项自定义 PostgreSQL 驱动,例如:

  1. import (
  2. _ "github.com/GoogleCloudPlatform/cloudsql-proxy/proxy/dialers/postgres"
  3. "gorm.io/gorm"
  4. )
  5. db, err := gorm.Open(postgres.New(postgres.Config{
  6. DriverName: "cloudsqlpostgres",
  7. DSN: "host=project:region:instance user=postgres dbname=postgres password=password sslmode=disable",
  8. })

现有的数据库连接

GORM 允许通过一个现有的数据库连接来初始化 *gorm.DB

  1. import (
  2. "database/sql"
  3. "gorm.io/driver/postgres"
  4. "gorm.io/gorm"
  5. )
  6. sqlDB, err := sql.Open("pgx", "mydb_dsn")
  7. gormDB, err := gorm.Open(postgres.New(postgres.Config{
  8. Conn: sqlDB,
  9. }), &gorm.Config{})

SQLite

  1. import (
  2. "gorm.io/driver/sqlite" // Sqlite driver based on CGO
  3. // "github.com/glebarez/sqlite" // Pure go SQLite driver, checkout https://github.com/glebarez/sqlite for details
  4. "gorm.io/gorm"
  5. )
  6. // github.com/mattn/go-sqlite3
  7. db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})

注意: 您也可以使用 file::memory:?cache=shared 替代文件路径。 这会告诉 SQLite 在系统内存中使用一个临时数据库。 (查看 SQLite 文档 获取详情)

SQL Server

  1. import (
  2. "gorm.io/driver/sqlserver"
  3. "gorm.io/gorm"
  4. )
  5. // github.com/denisenkom/go-mssqldb
  6. dsn := "sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm"
  7. db, err := gorm.Open(sqlserver.Open(dsn), &gorm.Config{})

TiDB

TiDB 兼容 MySQL 协议。 因此你可以按照 MySQL 一节来创建与 TiDB 的连接。

在使用 TiDB 时有一些值得注意的内容:

  • 您可以在结构体中使用 gorm:"primaryKey;default:auto_random()" 标签从而调用 TiDB 的 AUTO_RANDOM 功能。
  • TiDB supported SAVEPOINT from v6.2.0, please notice the version of TiDB when you use this feature.
  • TiDB supported FOREIGN KEY from v6.6.0, please notice the version of TiDB when you use this feature.
  1. import (
  2. "fmt"
  3. "gorm.io/driver/mysql"
  4. "gorm.io/gorm"
  5. )
  6. type Product struct {
  7. ID uint `gorm:"primaryKey;default:auto_random()"`
  8. Code string
  9. Price uint
  10. }
  11. func main() {
  12. db, err := gorm.Open(mysql.Open("root:@tcp(127.0.0.1:4000)/test"), &gorm.Config{})
  13. if err != nil {
  14. panic("failed to connect database")
  15. }
  16. db.AutoMigrate(&Product{})
  17. insertProduct := &Product{Code: "D42", Price: 100}
  18. db.Create(insertProduct)
  19. fmt.Printf("insert ID: %d, Code: %s, Prict: %d\n",
  20. insertProduct.ID, insertProduct.Code, insertProduct.Price)
  21. readProduct := &Product{}
  22. db.First(&readProduct, "code = ?", "D42") // find product with code D42
  23. fmt.Printf("read ID: %d, Code: %s, Prict: %d\n",
  24. readProduct.ID, readProduct.Code, readProduct.Price)
  25. }

Clickhouse

https://github.com/go-gorm/clickhouse

  1. import (
  2. "gorm.io/driver/clickhouse"
  3. "gorm.io/gorm"
  4. )
  5. func main() {
  6. dsn := "tcp://localhost:9000?database=gorm&username=gorm&password=gorm&read_timeout=10&write_timeout=20"
  7. db, err := gorm.Open(clickhouse.Open(dsn), &gorm.Config{})
  8. // Auto Migrate
  9. db.AutoMigrate(&User{})
  10. // Set table options
  11. db.Set("gorm:table_options", "ENGINE=Distributed(cluster, default, hits)").AutoMigrate(&User{})
  12. // Insert
  13. db.Create(&user)
  14. // Select
  15. db.Find(&user, "id = ?", 10)
  16. // Batch Insert
  17. var users = []User{user1, user2, user3}
  18. db.Create(&users)
  19. // ...
  20. }

连接池

GORM 使用 database/sql 来维护连接池

  1. sqlDB, err := db.DB()
  2. // SetMaxIdleConns sets the maximum number of connections in the idle connection pool.
  3. sqlDB.SetMaxIdleConns(10)
  4. // SetMaxOpenConns sets the maximum number of open connections to the database.
  5. sqlDB.SetMaxOpenConns(100)
  6. // SetConnMaxLifetime sets the maximum amount of time a connection may be reused.
  7. sqlDB.SetConnMaxLifetime(time.Hour)

查看 通用接口 获取详情。

Unsupported Databases

Some databases may be compatible with the mysql or postgres dialect, in which case you could just use the dialect for those databases.

For others, you are encouraged to make a driver, pull request welcome!