Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gorm-golang-crud-demo.md #818

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/MatrixOne/Tutorial/gorm-golang-crud-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

本篇文档将指导你如何使用 **golang** 和 **gorm** 构建一个简单的应用程序,并实现 CRUD(创建、读取、更新、删除)功能。

**Gorm** 是 Python 语言中最流行的 ORM 工具之一。
**Gorm** 是 Golang 语言中最流行的 ORM 工具之一。

## 开始前准备

相关软件的简单介绍:

* Gorm:基于 golang 的一个神奇的全功能 ORM 库,本次教程主要通过使用 ```gorm.io/gorm``` 和 ```gorm.io/driver/mysql``` 这两个库来让 Go 连接到 MYSQL 数据库并完成 CRUD 操作。
* Gorm:基于 golang 的一个神奇的全功能 ORM 库,本次教程主要通过使用 ```gorm.io/gorm``` 和 ```gorm.io/driver/mysql``` 这两个库来让 Go 连接到 MatrixOne 数据库并完成 CRUD 操作。

### 环境配置

Expand Down