Execute SQL statement _ MySQL using C in MySQL database

Source: Internet
Author: User
Similar to PostgreSQL, MySQL can be accessed in many different languages, including C, C ++, Java, and Perl. From Chapter 5th of ProfessionalLinuxProgramming on MySQL, NeilMatthew and Richard dstones use the detailed MySQLC interface to explain how to execute SQL statements in the MySQL database. They will discuss MySQL statements that return data


Similar to PostgreSQL, MySQL can be accessed in many different languages, including C, C ++, Java, and Perl. From Chapter 5th of Professional Linux Programming for MySQL, Neil Matthew and Richard Stones use the detailed MySQL C interface to explain how to execute SQL statements in the MySQL database. They will discuss the statements that return data, such as INSERT and statements that do not return data, such as UPDATE and DELETE. Then they will write a simple program to retrieve data from the database.
  
   Execute SQL statements
  
Now we have a connection and know how to handle the error. it is time to discuss how to use our database for practical work. The primary keyword for executing all types of SQL statements is mysql_query:
  
Int mysql_query (MYSQL * connection, const char * query)
  
As you can see, it is very simple. It takes a pointer to the connection structure and a text string containing the SQL statement to be executed. Unlike the command line tool, the end semicolon is not used. 0 is returned. In special cases where binary data needs to be included, you can use the related function, mysql_real_query. For the purposes of this chapter, we only need to discuss mysql_query.
  
   SQL statement that does not return data
  
We will first discuss the UPDATE, DELETE, and INSERT statements. Because they do not return data, it is easier to use.
  
Another important function we will introduce here is to check the affected number of rows:
  
My_ulonglong mysql_affected_rows (MYSQL * connection );
  
Perhaps the most obvious thing about this function is its extraordinary return results. This is a special unsigned type due to portability. To use it in printf, we recommend that you forcibly convert it to an unsigned long integer using the % lu format specification. This function returns the number of rows affected by the previous UPDATE, INSERT, or DELETE queries. these queries are executed using mysql_query.
  
For the mysql _ function, return code 0 indicates that no rows are affected. positive numbers indicate actual results, usually the number of affected rows.
  
As mentioned above, unexpected results may occur when mysql_affected_rows is used. Let's first discuss the number of rows affected by the INSERT statement, which will be operated as expected. Add the following code to connect2.c and call it insert1.c:
  
# Include
# Include
# Include "mysql. h"
Int main (int argc, char * argv []) {
MYSQL my_connection;
  
Int res;
  
Mysql_init (& my_connection );
If (mysql_real_connect (& my_connection, "localhost ",
"Rick", "bar", "rick", 0, NULL, 0 )){
Printf ("Connection success \ n ");
  
Res = mysql_query (& my_connection,
"Insert into children (fname, age ),
VALUES ('Ann ', 3 )");
If (! Res ){
Printf ("Inserted % lu rows \ n ",
(Unsigned long) mysql_affected_rows (& my_connection ));
} Else {
Fprintf (stderr, "Insert error % d: s \ n", mysql_errno,
(& My_connection ),
Mysql_error (& my_connection ));
}
Mysql_close (& my_connection );
} Else {
Fprintf (stderr, "Connection failed \ n ");
If (mysql_errno (& my_connection )){
Fprintf (stderr, "Connection error % d: % s \ n ",
Mysql_errno (& my_connection ),
Mysql_error (& my_connection ));
}
}
Return EXIT_SUCCESS;
}
  
As expected, the number of inserted rows is 1.
  
Now, we change the code, so the 'insert' part is replaced:
  
Mysql_errno (& my_connection), mysql_error (& my_connection ));
}
}
  
Res = mysql_query (& my_connection, "UPDATE children set age = 4
  
WHERE fname = 'Ann '");
  
If (! Res ){
Printf ("Updated % lu rows \ n ",
  
(Unsigned long) mysql_affected_rows (& my_connection ));
} Else {
  
Fprintf (stderr, "Update error % d: % s \ n ",
Mysql_errno (& my_connection ),
Mysql_error (& my_connection ));
}
  
Assume that the data in the sub-table is as follows:
  
Childno fname age
1
2
  
3
  
4
  
5
  
6
  
7
  
8
  
9
  
10
  
11
Jenny
Andrew
  
Gavin
  
Duncan
  
Emma
  
Alex
  
Adrian
  
Ann
  
Ann
  
Ann
  
Ann
14
10
  
4
  
2
  
0
  
11
  
5
  
3
  
4
  
3
  
4
  
If update1 is executed, the number of affected rows to be reported is 4, but the program actually reports 2 because it only has to change 2 rows, although the WHERE clause identifies 4 rows. If you want the result of mysql_affected_rows report to 4, which may be expected by people familiar with other databases, remember to pass the CLIENT_FOUND_ROWS flag to mysql_real_connect. the program in update2.c is as follows:
  
If (mysql_real_connect (& my_connection, "localhost ",
"Rick", "bar", "rick", 0, NULL, CLIENT_FOUND_ROWS )){
  
If we repeat the data in the database and run the program with this modification, the number of rows reported by the program is 4.
  
The mysql_affected_rows function is the last strange thing that occurs when data is deleted from the database. If the WHERE clause is used, mysql_affected_rows returns the number of rows deleted as expected. However, if there is no WHERE clause, all rows are deleted, and the number of affected rows is 0. This is because the entire table is optimized to be deleted due to efficiency reasons. This behavior is not affected by the CLIENT_FOUND_ROWS option flag.
  
   Statements for returning data
  
Now it is time to discuss the most common use of SQL, the SELECT statement for retrieving data from the database.
  
MySQL also supports SHOW, DESCRIBE, and explain SQL statements for returned results, but they are not considered here. By convention, the manual contains descriptions of these statements.
  
You will remember from the PostgreSQL chapter that you can retrieve data from the SQL SELECT statement in PQexec. here, you can retrieve all data immediately, or use a cursor to retrieve data from the database row by row, so as to get big data.
  
For the same reason, the retrieval methods of MySQL are almost identical, although it does not actually use a cursor to describe row-by-row retrieval. However, it provides an API to reduce the differences between the two methods. if needed, it usually makes interchange between the two methods easier.
  
Generally, there are four phases to retrieve data from the MySQL database:
  
Send query
  
Retrieve data
  
Process Data
  
   Any organization required for execution
  
As before, we use mysql_query to issue a query. Data retrieval is completed using mysql_store_result or mysql_use_result, depending on how you want to retrieve data, and then using mysql_fetch_row to call the sequence to process data. Finally, you must call mysql_free_result to allow MySQL to execute any required sorting.
  
   All functions for immediate data retrieval
  
You can retrieve all data from the SELECT statement (or other statements that return data). in a single call, use mysql_store_result:
  
MYSQL_RES * mysql_store_result (MYSQL * connection );
  
You must retrieve data in mysql_query before calling this function to store the data in the result set. This function retrieves all data from the server and stores it in the client. It returns a pointer to a structure (result set structure) that we have never encountered before. If the statement fails, NULL is returned.
  
When using the equivalent PostgreSQL, you should know that NULL returned means an error has occurred, and this is different from the case where no data is retrieved. Even if the returned value is not NULL, it does not mean that the current data needs to be processed.
  
If NULL is not returned, you can call mysql_num_rows and retrieve the actual number of returned rows. of course, it may be 0.
  
My_ulonglong mysql_num_rows (MYSQL_RES * result );
  
It obtains the returned result structure from mysql_store_result and returns the number of rows in the result set. the number of rows may be 0. If mysql_store_result is successful, mysql_num_rows always succeeds.
  
This combination of mysql_store_result and mysql_num_rows is a simple and direct method for data retrieval. Once mysql_store_result is returned successfully, all query data is stored on the client and we know that it can be retrieved from the result structure without worrying about database or network errors, because all data in the program is local. You can also immediately find the number of returned rows, which makes the encoding easier. As described above, it immediately sends all results back to the client. For a large result set, it may consume a large amount of server, network, and client resources. For these reasons, it is best to retrieve only the required data when a larger data set is used. Soon we will discuss how to use the mysql_use_result function to complete this operation.
  
Once the data is retrieved, you can use mysql_fetch_row to retrieve it, and use mysql_data_seek, mysql_row_seek, and mysql_row_tell to operate the result set. Before you start the data retrieval phase, let's discuss these functions first.
  
MYSQL_ROW mysql_fetch_row (MYSQL_RES * result );
  
This function uses the result structure obtained from the stored results, retrieves a single row from it, and returns the data allocated to you in the row structure. If there is no more data or an error occurs, NULL is returned. Later, we will return to process the data in this row.
  
Void mysql_data_seek (MYSQL_RES * result, my_ulonglong offset );
  
This function allows you to enter the result set and sets the rows returned by the next get operation. Offset is the row number, which must be within the range from 0 to 1 in the result set. Passing 0 will cause the first row to be returned when mysql_fetch_row is called the next time.
  
MYSQL_ROW_OFFEST mysql_row_tell (MYSQL_RES * res

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.