How to INSERT data into a MySQL database using Golang

A guide on how to use Prepared Statements in Golang to insert data into a MySQL database with multiple parameters.

In this article, you'll learn how to use Prepared Statements in Golang to insert data into a MySQL table with multiple parameters, enhancing efficiency and security when handling data.

package main

import (
    "database/sql"
    "fmt"
    "log"

    _ "github.com/go-sql-driver/mysql"
)

func main() {
    // Connect to the MySQL database
    db, err := sql.Open("mysql", "username:password@tcp(127.0.0.1:3306)/test_db")
    if err != nil {
        log.Fatal(err)
    }
    defer db.Close()

    // Check the connection
    if err := db.Ping(); err != nil {
        log.Fatal(err)
    }

    // Prepare the INSERT statement with multiple parameters
    stmt, err := db.Prepare("INSERT INTO students(name, age, email) VALUES (?, ?, ?)")
    if err != nil {
        log.Fatal(err)
    }
    defer stmt.Close()

    // Insert data
    data := [][]interface{}{
        {"Nguyen Van A", 20, "[email protected]"},
        {"Tran Thi B", 22, "[email protected]"},
        {"Le Van C", 21, "[email protected]"},
    }

    for _, record := range data {
        _, err = stmt.Exec(record...)
        if err != nil {
            log.Printf("Error inserting record %v: %v", record, err)
        } else {
            fmt.Printf("Inserted record: %v\n", record)
        }
    }
}

Detailed explanation:

  1. import: Imports necessary packages, including database/sql and github.com/go-sql-driver/mysql for MySQL connection.
  2. sql.Open("mysql", "username:password@tcp(127.0.0.1:3306)/test_db"): Connects to the MySQL database using user credentials and address.
  3. db.Ping(): Checks the connection to the database.
  4. db.Prepare(...): Prepares the INSERT statement with multiple parameters (?) to prevent SQL injection.
  5. data := [][]interface{}{...}: Creates sample data to be inserted using multiple parameters.
  6. stmt.Exec(record...): Executes the INSERT statement with data from record.

System Requirements:

  • Golang 1.15+
  • Library: github.com/go-sql-driver/mysql

How to install the libraries needed to run the Golang code above:

Use the following command to install the MySQL driver library:

go get -u github.com/go-sql-driver/mysql

Tips:

  • Using Prepared Statements ensures better security and prevents SQL injection attacks.
  • Always check for errors at every step to detect issues early.


Related

How to compare two slices of bytes in Golang

This article explains how to compare two byte slices in Golang. Golang provides built-in methods and libraries to easily and accurately compare two byte slices.
How to open the Notepad application using Golang

A guide on how to use the `os/exec` package in Golang to open the Notepad application on Windows. This is a practical example of how to call and run external programs from a Go program.
Common Functions When Using Selenium Chrome in Golang

This article compiles commonly used functions when working with Selenium Chrome in Golang, including installation, creating a session, navigating web pages, and interacting with page elements.
How to convert a Markdown string to HTML using Golang

A detailed guide on how to convert a Markdown string to HTML in Golang using the `blackfriday` library.
Guide to creating a multiple image upload form using Golang

A step-by-step guide on how to create a form to upload multiple images simultaneously in Golang using the `net/http` library.
How to Split a String in Golang Using the Split function

This article explains how to use the `Split` function in Go (Golang) to break a string into smaller substrings based on a delimiter. It's a common operation in Go programming when dealing with strings.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
How to Automatically Log in to a Website Using Selenium with Chrome in Golang

A guide on how to use Selenium in Golang to automatically log in to a website using the Chrome browser. This article provides specific code examples and detailed explanations of each step.
How to split a string in Golang using the SplitAfter function

A guide on how to use the `SplitAfter` function in Golang to split a string based on a specific character or substring. This article provides a detailed explanation of how the function works, along with examples.
How to pass Authentication Header Token when POSTing data to an API using Golang

This guide explains how to pass an Authentication Header Token when making a POST request to an API using Golang. It covers handling HTTP requests, adding a token to the Header for authentication, and sending data to an API.

main.add_cart_success