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.

In this article, you will learn how to use Golang to connect to a MySQL database and perform a SELECT query using Prepared Statements with multiple parameters, enhancing both performance and security.

package main

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

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

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

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

	// Use Prepared Statement with multi params
	stmt, err := db.Prepare("SELECT id, name, age FROM students WHERE age > ? AND age < ?")
	if err != nil {
		log.Fatal(err)
	}
	defer stmt.Close()

	// Execute the query with parameters
	rows, err := stmt.Query(18, 25)
	if err != nil {
		log.Fatal(err)
	}
	defer rows.Close()

	// Iterate over the query results
	for rows.Next() {
		var id int
		var name string
		var age int

		err := rows.Scan(&id, &name, &age)
		if err != nil {
			log.Fatal(err)
		}
		fmt.Printf("ID: %d, Name: %s, Age: %d\n", id, name, age)
	}

	// Check for errors after iterating through rows
	if err = rows.Err(); err != nil {
		log.Fatal(err)
	}
}

Detailed explanation:

  1. import: Specifies the necessary packages for the program.
  2. sql.Open("mysql", dsn): Opens a connection to the MySQL database using the provided dsn.
  3. db.Prepare(...): Creates a Prepared Statement with the SELECT query and placeholders for parameters.
  4. stmt.Query(18, 25): Executes the query with the provided parameters.
  5. rows.Next(): Iterates over the result set rows.
  6. rows.Scan(...): Retrieves data from the current row and assigns it to variables.
  7. fmt.Printf: Prints the retrieved data.

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:

  • Using Prepared Statements helps prevent SQL Injection and improves performance.
  • Always check the database connection before performing any operations.


Related

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.
How to write data to an Excel file using Golang

A detailed guide on how to write data to an Excel file using Golang with the excelize library.
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 Post Data to API Using Golang

This article guides you on how to send data to an API using the POST method in Golang, helping you better understand how to interact with web services.
Multithreading in Golang with Goroutine

A guide on how to handle multithreading in Golang using Goroutine, allowing efficient parallel processing and CPU optimization.
Converting a string variable into Boolean, Integer or Float type in Golang

A guide on how to convert a string into Boolean, Integer, or Float types in Golang. This article will help you understand how to use Go's built-in functions to work with different data types.
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.
Generate Captcha using Golang

A detailed guide on how to generate Captcha using Golang to protect your web application from automated attacks and bots.
How to DELETE data from a MySQL database using Golang

A guide on how to connect and delete data from a table in a MySQL database using the Golang programming language.
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.

main.add_cart_success