gorm操作mysql整理

前言

gorm 是 golang 语言编写的开源库,支持全功能 orm。官方支持的数据库类型有: MySQL, PostgreSQL, SQlite, SQL Server。 本篇博文整理一下 gorm 操作 mysql 一些方法

官网中文文档:https://gorm.io/zh_CN/docs/index.html

连接 mysql 服务器

方式一

// 参考 https://github.com/go-sql-driver/mysql#dsn-data-source-name 获取详情
  dsn := "user:pass@tcp(127.0.0.1:3306)/dbname?charset=utf8mb4&parseTime=True&loc=Local"
  db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})

方式二

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

gorm 基本操作

gorm 模型定义

gorm 进阶操作

后记

未完,待续......

你可能感兴趣的:(gorm操作mysql整理)