Home Backend Development Golang How to set up mysql in golang

How to set up mysql in golang

May 10, 2023 am 10:28 AM

Golang is a modern programming language that is particularly suitable for building high-performance, high-concurrency, and distributed applications. MySQL is a widely used open source relational database that is often used in conjunction with Golang to build reliable and efficient web applications. In this article, we will introduce in detail how to use Golang to set up and connect to MySQL.

  1. Install MySQL database

Before you start using the MySQL database, you need to complete the installation first. Usually, you need to obtain the available MySQL binary package and install the corresponding version according to the operating system and hardware architecture. There is nothing complicated about this process, just follow the instructions of the installation wizard.

After the installation is complete, start the MySQL service and check whether the service is running normally. On Linux or MacOS systems, you can check whether the MySQL service is available by running the following command:

$ service mysql status
Copy after login

If you are using a Windows operating system, you can find the installed MySQL service in the control panel and check whether normal operation.

  1. Create MySQL database and table

Before using Golang to connect to the MySQL database, you need to create a database and a table. You can do this by following the steps below:

  • Connect to the MySQL command line:

On Linux or MacOS systems, you can connect to the MySQL command line through a terminal window , as follows:

$ mysql -u root -p
Copy after login

You need to enter the user name and password of the MySQL administrator to enter the MySQL command line.

  • Create a MySQL database:

In the MySQL command line, execute the following command to create a new database:

$ CREATE DATABASE mydb;
Copy after login

This command will create A MySQL database named "mydb".

  • Use the created database:

In the MySQL command line, you can use the following command to use the database you just created:

$ USE mydb;
Copy after login

This The command will switch the current operation object to the database named "mydb".

  • Create a MySQL table:

In the MySQL command line, you can use the following command to create a new table:

$ CREATE TABLE mytable (
    id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
    first_name VARCHAR(30) NOT NULL,
    last_name VARCHAR(30) NOT NULL,
    email VARCHAR(50)
);
Copy after login

This command will A MySQL table named "mytable" will be created and four fields will be set for it.

  1. Golang connects to MySQL

After completing the creation of the MySQL database and table, we can use Golang to connect and perform related operations. The following is the operation process for connecting to MySQL in Golang:

  • Import the Golang mysql package:

In your Golang project, you need to import the mysql package first.

import (
    "database/sql"
    "fmt"
    _ "github.com/go-sql-driver/mysql"
)
Copy after login
  • Create a MySQL connection:

When connecting to a MySQL database in Golang, you need to create a db object to represent the status of the MySQL connection. Here is how to create a MySQL connection:

func main() {
    //连接MySQL数据库
    db, err := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/mydb")
    if err != nil {
        fmt.Println(err.Error())
        return
    }
    defer db.Close()
}
Copy after login

In the example, we use user and password to represent the username and password of the MySQL administrator respectively, 127.0.0.1 and 3306 represent the address and port number of the MySQL service, mydb is the name of the MySQL database we just created.

  • Execute MySQL query:

After successfully connecting to the MySQL database, we can execute SQL statements to perform various operations. The following is an example of using Golang to insert data into MySQL:

func main() {
    //连接MySQL数据库
    db, err := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/mydb")
    if err != nil {
        fmt.Println(err.Error())
        return
    }
    defer db.Close()

    //插入数据
    stmt, err := db.Prepare("INSERT INTO mytable (first_name, last_name, email) VALUES (?, ?, ?)")
    if err != nil {
        fmt.Println(err.Error())
        return
    }
    defer stmt.Close()

    res, err := stmt.Exec("John", "Doe", "john@doe.com")
    if err != nil {
        fmt.Println(err.Error())
        return
    }

    id, err := res.LastInsertId()
    if err != nil {
        fmt.Println(err.Error())
        return
    }

    fmt.Printf("Inserted a new row with ID: %d
", id)
}
Copy after login

The above code uses Golang's database/sql package and the MySQL driver, opens a connection, and then executes an INSERT statement to insert data into our in the table. In this process, we use the Prepare function to prepare the SQL statement and return an stmt object. We then use the Exec function to insert the data into the MySQL database. If the execution is successful, we will be able to get the ID of the row we inserted.

  1. Summary

This article details how to use Golang to connect to a MySQL database, create databases and tables in MySQL, and use Golang to perform MySQL operations. When you understand this connection method, you can easily develop high-level web applications using Golang with correct MySQL operations and unbeatable performance.

The above is the detailed content of How to set up mysql in golang. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the vulnerabilities of Debian OpenSSL What are the vulnerabilities of Debian OpenSSL Apr 02, 2025 am 07:30 AM

OpenSSL, as an open source library widely used in secure communications, provides encryption algorithms, keys and certificate management functions. However, there are some known security vulnerabilities in its historical version, some of which are extremely harmful. This article will focus on common vulnerabilities and response measures for OpenSSL in Debian systems. DebianOpenSSL known vulnerabilities: OpenSSL has experienced several serious vulnerabilities, such as: Heart Bleeding Vulnerability (CVE-2014-0160): This vulnerability affects OpenSSL 1.0.1 to 1.0.1f and 1.0.2 to 1.0.2 beta versions. An attacker can use this vulnerability to unauthorized read sensitive information on the server, including encryption keys, etc.

Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Apr 02, 2025 am 09:12 AM

Backend learning path: The exploration journey from front-end to back-end As a back-end beginner who transforms from front-end development, you already have the foundation of nodejs,...

How to specify the database associated with the model in Beego ORM? How to specify the database associated with the model in Beego ORM? Apr 02, 2025 pm 03:54 PM

Under the BeegoORM framework, how to specify the database associated with the model? Many Beego projects require multiple databases to be operated simultaneously. When using Beego...

What should I do if the custom structure labels in GoLand are not displayed? What should I do if the custom structure labels in GoLand are not displayed? Apr 02, 2025 pm 05:09 PM

What should I do if the custom structure labels in GoLand are not displayed? When using GoLand for Go language development, many developers will encounter custom structure tags...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

How to configure MongoDB automatic expansion on Debian How to configure MongoDB automatic expansion on Debian Apr 02, 2025 am 07:36 AM

This article introduces how to configure MongoDB on Debian system to achieve automatic expansion. The main steps include setting up the MongoDB replica set and disk space monitoring. 1. MongoDB installation First, make sure that MongoDB is installed on the Debian system. Install using the following command: sudoaptupdatesudoaptinstall-ymongodb-org 2. Configuring MongoDB replica set MongoDB replica set ensures high availability and data redundancy, which is the basis for achieving automatic capacity expansion. Start MongoDB service: sudosystemctlstartmongodsudosys

How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? Apr 02, 2025 pm 04:54 PM

The problem of using RedisStream to implement message queues in Go language is using Go language and Redis...

See all articles