How to UPDATE data in a MySQL database using Golang

A guide on how to update data in a MySQL database using Golang with Prepared Statements involving multiple parameters for enhanced security and efficiency.

In this article, you will learn how to use Golang to perform an UPDATE query in a MySQL database using Prepared Statements with multiple parameters. This method helps prevent security vulnerabilities like SQL Injection.

package main

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

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

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

    // Prepare the UPDATE statement
    stmt, err := db.Prepare("UPDATE students SET name=?, age=? WHERE id=?")
    if err != nil {
        log.Fatal(err)
    }
    defer stmt.Close()

    // Execute the statement with multiple parameters
    res, err := stmt.Exec("John Doe", 22, 1)
    if err != nil {
        log.Fatal(err)
    }

    // Check the number of rows affected
    rowsAffected, err := res.RowsAffected()
    if err != nil {
        log.Fatal(err)
    }
    fmt.Printf("Rows updated: %d\n", rowsAffected)
}

Detailed explanation:

  1. import (...): Imports the required packages such as database/sql and fmt.
  2. db, err := sql.Open(...): Connects to the MySQL database using connection details.
  3. defer db.Close(): Ensures the database connection is closed after completion.
  4. stmt, err := db.Prepare(...): Prepares the UPDATE statement using a Prepared Statement.
  5. defer stmt.Close(): Ensures the Prepared Statement is closed.
  6. res, err := stmt.Exec(...): Executes the UPDATE statement with the specified parameters.
  7. rowsAffected, err := res.RowsAffected(): Retrieves the number of rows affected and prints it.

System Requirements:

  • Golang 1.16+
  • MySQL driver 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 library:

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

Tips:

  • Always use Prepared Statements to avoid SQL Injection.
  • Ensure the database connection is correctly configured before running SQL commands.


Related

Generate Captcha using Golang

A detailed guide on how to generate Captcha using Golang to protect your web application from automated attacks and bots.
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 SELECT data from a MySQL database using Golang

A guide on how to use Golang to query data from a MySQL database using Prepared Statements with multiple parameters.
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.
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.
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.
Guide to Reading Excel Files Using Golang

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Golang, utilizing the excelize library with step-by-step installation and illustrative examples.
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.
JSON Web Token Authentication with Golang

A guide on how to implement JSON Web Token (JWT) authentication in a Golang application. This article details how to create, sign, and verify JWTs to secure an API.
Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.

main.add_cart_success