Paginate MySQL query results in C++

A detailed guide on how to paginate MySQL query results in C++ using Prepared Statements. This article helps you understand how to query data and efficiently paginate results when working with MySQL in C++.

In this article, we will explore how to paginate query results from MySQL using C++ and Prepared Statements. You'll learn how to connect to MySQL, perform queries, and split data into smaller pages for display.

C++ code

#include <iostream>
#include <mysql/mysql.h>

// MySQL connection details
#define SERVER "localhost"
#define USER "root"
#define PASSWORD "password"
#define DATABASE "test_db"

int main() {
    MYSQL *conn;
    MYSQL_STMT *stmt;
    MYSQL_RES *result;
    MYSQL_ROW row;
    
    conn = mysql_init(NULL);

    // Connect to the database
    if (!mysql_real_connect(conn, SERVER, USER, PASSWORD, DATABASE, 0, NULL, 0)) {
        std::cerr << "Connection failed: " << mysql_error(conn) << std::endl;
        return 1;
    }

    // Query with LIMIT and OFFSET
    int page = 1; // First page
    int pageSize = 5; // Number of records per page
    int offset = (page - 1) * pageSize;

    std::string query = "SELECT id, name FROM users LIMIT ? OFFSET ?";
    
    // Prepare the statement
    stmt = mysql_stmt_init(conn);
    if (!stmt) {
        std::cerr << "Could not initialize Prepared Statement: " << mysql_error(conn) << std::endl;
        return 1;
    }

    if (mysql_stmt_prepare(stmt, query.c_str(), query.length())) {
        std::cerr << "Query preparation failed: " << mysql_stmt_error(stmt) << std::endl;
        return 1;
    }

    // Bind parameters
    MYSQL_BIND bind[2];
    memset(bind, 0, sizeof(bind));

    bind[0].buffer_type = MYSQL_TYPE_LONG;
    bind[0].buffer = (char *)&pageSize;

    bind[1].buffer_type = MYSQL_TYPE_LONG;
    bind[1].buffer = (char *)&offset;

    if (mysql_stmt_bind_param(stmt, bind)) {
        std::cerr << "Parameter binding failed: " << mysql_stmt_error(stmt) << std::endl;
        return 1;
    }

    // Execute the query
    if (mysql_stmt_execute(stmt)) {
        std::cerr << "Query execution failed: " << mysql_stmt_error(stmt) << std::endl;
        return 1;
    }

    // Fetch results
    result = mysql_stmt_result_metadata(stmt);
    int num_fields = mysql_num_fields(result);

    // Read and print the results
    MYSQL_BIND resultBind[num_fields];
    memset(resultBind, 0, sizeof(resultBind));

    unsigned long length[2];
    char id[10];
    char name[50];
    bool is_null[2];
    bool error[2];

    resultBind[0].buffer_type = MYSQL_TYPE_STRING;
    resultBind[0].buffer = id;
    resultBind[0].buffer_length = sizeof(id);
    resultBind[0].is_null = &is_null[0];
    resultBind[0].length = &length[0];
    resultBind[0].error = &error[0];

    resultBind[1].buffer_type = MYSQL_TYPE_STRING;
    resultBind[1].buffer = name;
    resultBind[1].buffer_length = sizeof(name);
    resultBind[1].is_null = &is_null[1];
    resultBind[1].length = &length[1];
    resultBind[1].error = &error[1];

    if (mysql_stmt_bind_result(stmt, resultBind)) {
        std::cerr << "Result binding failed: " << mysql_stmt_error(stmt) << std::endl;
        return 1;
    }

    while (!mysql_stmt_fetch(stmt)) {
        std::cout << "ID: " << id << ", Name: " << name << std::endl;
    }

    // Clean up
    mysql_free_result(result);
    mysql_stmt_close(stmt);
    mysql_close(conn);

    return 0;
}

Detailed explanation

  • mysql_real_connect: Connects to the MySQL database with the provided credentials.
  • mysql_stmt_prepare: Prepares the SQL query with LIMIT and OFFSET for pagination.
  • mysql_stmt_bind_param: Binds the parameters to the query (pageSize and offset).
  • mysql_stmt_execute: Executes the query with the bound parameters.
  • mysql_stmt_bind_result: Binds the query results to variables for reading and displaying.

System Requirements:

  • C++: C++11 or later
  • MySQL Connector/C++: Latest version compatible with the system

How to install the libraries:

  1. Install MySQL Connector/C++:
    • Ubuntu: sudo apt-get install libmysqlclient-dev
    • Windows: Download and install from the MySQL website.

Tips:

  • Always check the connection and query results to avoid runtime errors.
  • Using Prepared Statements increases security and performance when working with MySQL.
Tags: MySQL, C++


Related

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.
Updating Data in MySQL Using C++

A guide on how to update data in MySQL using C++ with Prepared Statements, ensuring security and efficiency when interacting with the database. This article provides a clear illustrative example.
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.
Reading Excel File Content in C++

A detailed guide on reading the content of an Excel file in C++ using the `xlnt` library. This article will help you understand how to retrieve data from an Excel file and process it in your C++ program.
Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.
How to Write Data to an Excel File Using C++

A detailed guide on writing data to an Excel file using C++ and the openxlsx library. This article provides the necessary steps to create and write data to an Excel file easily.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Using Selenium in C++ to send JavaScript code to a website on Chrome

A guide on using Selenium in C++ to send JavaScript code to a website via the Chrome browser. This article will instruct you on setup and coding for this task.
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.
Preventing XSS (Cross-site Scripting) in C++

A guide on techniques to prevent XSS (Cross-site Scripting) in C++ applications, helping to protect web applications from attacks by controlling and encoding user input. This article provides methods and illustrative examples to enhance security.

main.add_cart_success