search
HomeDatabaseMysql TutorialHow to connect to mysql database and read data in C++

    1. The header file of mysql API needs to be included

    If you need to connect to the local mysql database, the premise is that the mysql database must have been installed locally. Some mysql APIs are used here, such as connecting to the database, executing query statements and other operations. These interfaces are included in the following header files:

    #include <mysql/mysql.h>

    2. Specific steps to connect to mysql

    Here It can be roughly divided into four main steps:

    1. Connect to mysql database

    1. Connect to mysql database

    Obviously, if you want to obtain the data in mysql data, you must first connect Database, obtain a handle that can operate the database.

    2. Execute the query statement, that is, select the data we need.

    is to execute the query statement and query the data we need. The queried data will be saved in a place called the result set.

    3. Obtain the required data from the result set

    Use the relevant interface functions to obtain the data of each row and local field from the result set.

    4. Extract the information of each field in each row from the result set

    5. Release resources, including the result set mysql handle

    The following will explain in detail a few that must be used Key interface functions.

    2.1 mysql_real_connect

    This function is used to connect to the database engine running on the host. If the connection is successful, a handle that can operate the database will be obtained, otherwise a NULL pointer will be returned.

    MYSQL *mysql_real_connect(MYSQL *mysql, 
    						const char *host, 
    						const char *user, 
    						const char *passwd, 
    						const char *db, 
    						unsigned int port, 
    						const char *unix_socket, 
    						unsigned long client_flag
    						)

    This function has many parameters, and the meaning of each parameter is as follows:

    • mysql: It is the address of the existing MYSQL structure. Before calling mysql_real_connect(), mysql_init() must be called to initialize the MYSQL structure.

    • #host: is the host name or IP address. If "host" is NULL or the string "localhost", the connection will be treated as a connection to localhost.

    • #user: The user’s MySQL login ID. If "user" is NULL or the empty string "", the user will be considered the current user.

    • passwd: User’s password. If "passwd" is NULL, only entries in the user's user table (that have an empty password field) will be checked for a match.

    • db: is the database name. If db is NULL, the connection will set the default database to this value.

    • port: If "port" is not 0, its value will be used as the port number for the TCP/IP connection. Note that the "host" parameter determines the type of connection.

    • unix_socket: If unix_socket is not NULL, this string describes the socket or named pipe that should be used. Note that the "host" parameter determines the type of connection.

    • client_flag: The value is usually 0

    2.2 mysql_query or mysql_real_query

    This function is used Send a query command to the database and let the database execute it. Returning 0 indicates that the query is successful, otherwise it fails.

    int mysql_query(MYSQL *mysql, const char *stmt_str)

    Or:

    int
    mysql_real_query(MYSQL *mysql,
                     const char *stmt_str,
                     unsigned long length)
    • mysql: is the mysql operation handle obtained through.

    • stmt_str: Indicates the query statement that needs to be executed.

    • #length: is the length of the query statement.

    The difference between the above two functions is:

    • mysql_query() cannot be used to execute binary statements, that is, the parameter stmt_str cannot There is binary data, which will be parsed into characters.

    • mysql_query query speed is slightly slower because the length of the query statement needs to be calculated

    2.3 Get the result set mysql_store_result

    The The function returns the result set if the query is successful. If it fails, it returns NULL

    MYSQL_RES *mysql_store_result(MYSQL *mysql)

    2.4 Display each row of data in the result set

    The input parameter of this function is the result set returned in step (3). Each time it is called, the next row of data in the result set is returned and the pointer is moved backward by one row. If there is no next row of data, NULL is returned.
    You can use mysql_num_fields(result) to calculate the number of rows in the result set, and mysql_num_fields(result) to calculate the number of columns. If row is the information of a certain row, then row[0], row[1]. . . Each field information of the row.

    MYSQL_ROW mysql_fetch_row(MYSQL_RES *result)

    3. A programming example

    The environment here is a linux system. The local database name used is: CrashCourse, and the query table name is products. The following programming example demonstrates querying all items with a price greater than 30 in the products table. The complete content of the products table is as follows:

    How to connect to mysql database and read data in C++

    #include 
    #include <mysql/mysql.h>
    #include 
    using namespace std;
     
    MYSQL mysql;  //mysql连接
    MYSQL_RES* res; //结果集结构体   
    MYSQL_ROW row; //char** 二维数组,存放记录  
     
    int main()
    {	
    	// 步骤1: 初始化并连接数据库,获得操作数据库的句柄
    	mysql_init(&mysql);    //初始化
    	if (!(mysql_real_connect(&mysql, "localhost", "root", "root", "CrashCourse", 0, NULL, 0))) {
    		cout << "Couldn't connect to Database!\n : " << mysql_error(&mysql);
    		exit(1);
    	}
    	else {
    		printf("Database connection succeeded. Connected...\n\n");
    	}
    	// 步骤2: 执行查询语句,查询需要的数据(设置编码格式也相当于执行特殊的查询语句)
    	mysql_query(&mysql, "set names gbk"); // 设置编码格式
    	mysql_query(&mysql, "SELECT * from products where prod_price > 30");
     
    	// 步骤3:获取结果集
    	res = mysql_store_result(&mysql);
    	// 步骤4:显示结果集中每行数据
        int cols = mysql_num_fields(res); // 计算结果集中,列的个数
    	while (row = mysql_fetch_row(res)) {
        
        	for (int i = 0; i < cols; ++i) {
          		cout << row[i] << "\t";
        	}
        	cout << endl;
    	}
     	// 步骤5:释放结果集合mysql句柄
    	mysql_free_result(res);
    	mysql_close(&mysql);
     return 0;
     
    }

    The query results are as follows:

    How to connect to mysql database and read data in C++

    The above is the detailed content of How to connect to mysql database and read data in C++. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    What are stored procedures in MySQL?What are stored procedures in MySQL?May 01, 2025 am 12:27 AM

    Stored procedures are precompiled SQL statements in MySQL for improving performance and simplifying complex operations. 1. Improve performance: After the first compilation, subsequent calls do not need to be recompiled. 2. Improve security: Restrict data table access through permission control. 3. Simplify complex operations: combine multiple SQL statements to simplify application layer logic.

    How does query caching work in MySQL?How does query caching work in MySQL?May 01, 2025 am 12:26 AM

    The working principle of MySQL query cache is to store the results of SELECT query, and when the same query is executed again, the cached results are directly returned. 1) Query cache improves database reading performance and finds cached results through hash values. 2) Simple configuration, set query_cache_type and query_cache_size in MySQL configuration file. 3) Use the SQL_NO_CACHE keyword to disable the cache of specific queries. 4) In high-frequency update environments, query cache may cause performance bottlenecks and needs to be optimized for use through monitoring and adjustment of parameters.

    What are the advantages of using MySQL over other relational databases?What are the advantages of using MySQL over other relational databases?May 01, 2025 am 12:18 AM

    The reasons why MySQL is widely used in various projects include: 1. High performance and scalability, supporting multiple storage engines; 2. Easy to use and maintain, simple configuration and rich tools; 3. Rich ecosystem, attracting a large number of community and third-party tool support; 4. Cross-platform support, suitable for multiple operating systems.

    How do you handle database upgrades in MySQL?How do you handle database upgrades in MySQL?Apr 30, 2025 am 12:28 AM

    The steps for upgrading MySQL database include: 1. Backup the database, 2. Stop the current MySQL service, 3. Install the new version of MySQL, 4. Start the new version of MySQL service, 5. Recover the database. Compatibility issues are required during the upgrade process, and advanced tools such as PerconaToolkit can be used for testing and optimization.

    What are the different backup strategies you can use for MySQL?What are the different backup strategies you can use for MySQL?Apr 30, 2025 am 12:28 AM

    MySQL backup policies include logical backup, physical backup, incremental backup, replication-based backup, and cloud backup. 1. Logical backup uses mysqldump to export database structure and data, which is suitable for small databases and version migrations. 2. Physical backups are fast and comprehensive by copying data files, but require database consistency. 3. Incremental backup uses binary logging to record changes, which is suitable for large databases. 4. Replication-based backup reduces the impact on the production system by backing up from the server. 5. Cloud backups such as AmazonRDS provide automation solutions, but costs and control need to be considered. When selecting a policy, database size, downtime tolerance, recovery time, and recovery point goals should be considered.

    What is MySQL clustering?What is MySQL clustering?Apr 30, 2025 am 12:28 AM

    MySQLclusteringenhancesdatabaserobustnessandscalabilitybydistributingdataacrossmultiplenodes.ItusestheNDBenginefordatareplicationandfaulttolerance,ensuringhighavailability.Setupinvolvesconfiguringmanagement,data,andSQLnodes,withcarefulmonitoringandpe

    How do you optimize database schema design for performance in MySQL?How do you optimize database schema design for performance in MySQL?Apr 30, 2025 am 12:27 AM

    Optimizing database schema design in MySQL can improve performance through the following steps: 1. Index optimization: Create indexes on common query columns, balancing the overhead of query and inserting updates. 2. Table structure optimization: Reduce data redundancy through normalization or anti-normalization and improve access efficiency. 3. Data type selection: Use appropriate data types, such as INT instead of VARCHAR, to reduce storage space. 4. Partitioning and sub-table: For large data volumes, use partitioning and sub-table to disperse data to improve query and maintenance efficiency.

    How can you optimize MySQL performance?How can you optimize MySQL performance?Apr 30, 2025 am 12:26 AM

    TooptimizeMySQLperformance,followthesesteps:1)Implementproperindexingtospeedupqueries,2)UseEXPLAINtoanalyzeandoptimizequeryperformance,3)Adjustserverconfigurationsettingslikeinnodb_buffer_pool_sizeandmax_connections,4)Usepartitioningforlargetablestoi

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    SecLists

    SecLists

    SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment