Fetching Data from MySQL Database in C++

A detailed guide on how to fetch data from a MySQL database using C++ with Prepared Statements. The article helps you understand how to connect, execute queries, and handle results using MySQL Connector/C++.

This article will guide you on how to use Prepared Statements to fetch data from a MySQL database using the C++ programming language. Using Prepared Statements ensures that your queries are more secure and efficient.

C++ Code

#include <iostream>
#include <mysql_driver.h>
#include <mysql_connection.h>
#include <cppconn/statement.h>
#include <cppconn/prepared_statement.h>
#include <cppconn/resultset.h>

int main() {
    try {
        // Connect to the MySQL database
        sql::mysql::MySQL_Driver *driver = sql::mysql::get_mysql_driver_instance();
        std::unique_ptr<sql::Connection> con(driver->connect("tcp://127.0.0.1:3306", "username", "password"));

        // Select the database
        con->setSchema("database_name");

        // Create a Prepared Statement
        std::unique_ptr<sql::PreparedStatement> pstmt(con->prepareStatement("SELECT id, name, age FROM users WHERE age > ?"));

        // Set parameter value
        pstmt->setInt(1, 25);

        // Execute the query and fetch the result
        std::unique_ptr<sql::ResultSet> res(pstmt->executeQuery());

        // Iterate through the result set and display the data
        while (res->next()) {
            std::cout << "ID: " << res->getInt("id") << " | "
                      << "Name: " << res->getString("name") << " | "
                      << "Age: " << res->getInt("age") << std::endl;
        }
    } catch (sql::SQLException &e) {
        std::cerr << "Error: " << e.what() << std::endl;
    }

    return 0;
}

Detailed explanation

  • sql::mysql::get_mysql_driver_instance(): Retrieves the MySQL driver.
  • driver->connect(...): Establishes a connection to the MySQL database.
  • con->setSchema("database_name"): Selects the target database.
  • prepareStatement(...): Creates a Prepared Statement with the query.
  • pstmt->setInt(1, 25): Sets the parameter value for the query.
  • executeQuery(): Executes the query and returns the result set.
  • res->next(): Iterates through each row in the result set.

System Requirements:

  • C++ Compiler (GCC, MSVC, etc.)
  • MySQL Connector/C++ (Version 1.1.9 or later)
  • MySQL Server 5.7 or 8.0

How to install the libraries needed to run the C++ code above:

  1. Download MySQL Connector/C++ from the official MySQL website.
  2. Extract and configure the library paths when compiling your source code.

Tips:

  • Always use Prepared Statements to avoid SQL Injection.
  • Check for errors when connecting to the database to handle potential issues.
Tags: MySQL, C++


Related

Common Functions When Using Selenium Chrome in C++

This article lists the common functions used when working with Selenium Chrome in C++, helping readers quickly grasp the necessary operations for browser automation.
Get the last character of a string in C++

A guide on how to retrieve the last character of a string in C++ using methods and syntax from the `string` library. This article helps you understand string manipulation and character access in C++.
Multithreading in C++

A detailed guide on handling multithreading in C++ using the `thread` library. This article helps you understand how to use multithreading to improve concurrent processing efficiency.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
Example of Factory Pattern in C++

This article presents the Factory Pattern in C++, a popular design pattern that helps create objects without specifying the exact class of the object. This increases flexibility and extensibility in the codebase.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.
Create a Thumbnail for Images in C++

A detailed guide on how to create a thumbnail for images in C++ using the OpenCV library. This article will help you understand how to process images and easily resize them to create thumbnails.
Create a watermark for images using C++

A guide on how to create a watermark for images in C++ using the OpenCV library. This article helps you understand how to add text or images onto a photo to create a watermark.
Convert Markdown to HTML in C++

A detailed guide on how to convert Markdown strings to HTML using C++. This article will help you grasp how to use a Markdown library to perform the conversion easily and efficiently.

main.add_cart_success