How to SELECT data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to query data from a MySQL database with multiple parameters safely and effectively.

In this article, you'll learn how to connect to a MySQL database and use Node.js with Prepared Statements to execute a SELECT statement, retrieving data from a table within the database using multiple parameters.

// Import the MySQL library
const mysql = require('mysql2');

// Create a connection to the MySQL database
const connection = mysql.createConnection({
  host: 'localhost',
  user: 'root',
  password: 'password',
  database: 'test_db'
});

// Connect to the database
connection.connect(err => {
  if (err) throw err;
  console.log('Connected to MySQL');
  
  // SELECT statement with Prepared Statements
  const sql = 'SELECT * FROM students WHERE id = ? AND name = ?';
  const params = [1, 'John Doe'];

  // Execute the query
  connection.execute(sql, params, (err, results) => {
    if (err) throw err;
    
    // Display the results
    console.log(results);
    
    // Close the connection
    connection.end();
  });
});

Detailed explanation:

  1. const mysql = require('mysql2');: Imports the mysql2 library to allow MySQL connections and queries.
  2. const connection = mysql.createConnection(...): Sets up the connection to the MySQL database using details such as host, user, password, and database.
  3. connection.connect(err => {...}): Connects to the database and checks for any connection errors.
  4. const sql = 'SELECT * FROM students WHERE id = ? AND name = ?';: Defines the SELECT statement with parameters.
  5. const params = [1, 'John Doe'];: Declares the parameter values to be passed into the SELECT statement.
  6. connection.execute(sql, params, (err, results) => {...}): Executes the SELECT statement with the specified parameters and displays the results.
  7. connection.end();: Closes the connection to the database.

System Requirements:

  • Node.js
  • Library: mysql2

How to install the libraries needed to run the Node.js code above:

Use npm to install the library:

npm install mysql2

Tips:

  • Ensure that your MySQL server is running before attempting to connect.
  • Use Prepared Statements to prevent SQL injection attacks.
  • Double-check your connection details to avoid any connection issues.


Related

Guide to creating a multi-image upload form with Node.js

A step-by-step guide on how to create a multi-image upload form in Node.js using the `Multer` library for file handling and `Express` for server creation.
How to Get JSON Data from API Using Node.js

This article guides you on how to retrieve JSON data from an API using the https module in Node.js, helping you better understand how to interact with web services.
How to convert a Markdown string to HTML using Node.js

A detailed guide on how to convert a Markdown string to HTML in Node.js using the `marked` library.
Using Selenium in Node.js to send JavaScript code to a website on Chrome

A guide on how to use Selenium in Node.js to automate sending JavaScript code to a web page in the Chrome browser. This article will walk you through the installation and execution steps.
Writing data to an Excel file using Node.js

A guide on how to write data to an Excel file using Node.js, employing the ExcelJS library for efficient and effective Excel file manipulation.
Guide to speeding up Node.js applications with ThreadPool

A comprehensive guide on using ThreadPool to speed up Node.js applications, enhancing performance and multitasking capabilities. The article covers how to configure and use ThreadPool in Node.js.
How to automate website login using Selenium with Chrome in Node.js

A guide on how to use Selenium in Node.js to automate the login process for a website. The article will show how to set up the environment and write Node.js code to control Chrome.
How to DELETE data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to delete data from a table in a MySQL database safely and effectively.  
Create a Simple Chat Application Using Socket.IO in Node.js

A detailed guide on how to create a simple chat application using Socket.IO in Node.js, allowing users to send and receive messages in real-time.
Guide to Reading Excel Files Using Node.js

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Node.js, utilizing the xlsx library with step-by-step installation and illustrative examples.

main.add_cart_success