天天看點

Linux下C語言執行MySQL語句例子傳回資料的語句:select一次提取一行資料:mysql_use_result處理傳回的資料

本文出自   http://blog.csdn.net/shuangde800

執行SQL語句的增、删、改、查的主要API函數為:

[cpp]  view plain  copy

  1. int mysql_query(MYSQL *connection, const char *query);  

函數接收參數連接配接句柄和字元串形式的有效SQL語句(沒有結束的分号,這與mysql工具不同)。如果成功,它傳回0。

如果包含二進制資料的查詢,要使用mysql_real_query.

檢查受查詢影響的行數:

[cpp]  view plain  copy

  1. my_ulonglong mysql_affected_rows(MYSQL *connection);  

my_ulonglong是無符号長整形,為%lu格式

這個函數傳回受之前執行update,insert或delete查詢影響的行數。

例子

資料庫中有一個student表

[sql]  view plain  copy

  1. CREATE TABLE student (  
  2.         student_no varchar(12) NOT NULL PRIMARY KEY,  
  3.         student_name varchar(12) NOT NULL  
  4.         );  
Linux下C語言執行MySQL語句例子傳回資料的語句:select一次提取一行資料:mysql_use_result處理傳回的資料

增、删、改代碼:

[cpp]  view plain  copy

  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <string.h>  
  4. #include "mysql.h"  
  5. #include "errmsg.h"  
  6. #include "mysqld_error.h"  
  7. MYSQL conn;  
  8. void connection(const char* host, const char* user, const char* password, const char* database) {  
  9.     mysql_init(&conn); // 注意取位址符&  
  10.     if (mysql_real_connect(&conn, host, user, password, database, 0, NULL, 0)) {  
  11.         printf("Connection success!\n");  
  12.     } else {  
  13.         fprintf(stderr, "Connection failed!\n");  
  14.         if (mysql_errno(&conn)) {  
  15.             fprintf(stderr, "Connection error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  16.         }  
  17.         exit(EXIT_FAILURE);  
  18.     }  
  19. }  
  20. void insert() {  
  21.     int res = mysql_query(&conn, "INSERT INTO student(student_no,student_name) VALUES('123465', 'Ann')");  
  22.     if (!res) {  
  23.         printf("Inserted %lu rows\n", (unsigned long)mysql_affected_rows(&conn));  
  24.     } else {  
  25.         fprintf(stderr, "Insert error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  26.     }  
  27. }  
  28. void update() {  
  29.     int res = mysql_query(&conn, "UPDATE student SET student_name='Anna' WHERE student_no='123465'");  
  30.     if (!res) {  
  31.         printf("Update %lu rows\n", (unsigned long)mysql_affected_rows(&conn));  
  32.     } else {  
  33.         fprintf(stderr, "Update error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  34.     }  
  35. }  
  36. void delete() {  
  37.     int res = mysql_query(&conn, "DELETE from student WHERE student_no='123465'");  
  38.     if (!res) {  
  39.         printf("Delete %lu rows\n", (unsigned long)mysql_affected_rows(&conn));  
  40.     } else {  
  41.         fprintf(stderr, "Delete error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  42.     }  
  43. }  
  44. int main (int argc, char *argv[]) {  
  45.     connection("localhost", "root", "shuang", "shuangde");  
  46.     delete();  
  47.     mysql_close(&conn);  
  48.     exit(EXIT_SUCCESS);  
  49. }  

傳回資料的語句:select

SQL最常見的用法是提取資料而不是插入或更新資料。資料是用select語句提取的

C應用程式提取資料一般需要4個步驟:

1、執行查詢

2、提取資料

3、處理資料

4、必要的清理工作

就像之前的insert和update一樣,使用mysql_query來發送SQL語句,然後使用mysql_store_result或mysql_use_result來提取資料,具體使用哪個語句取決于你想如何提取資料。接着,将使用一系列mysql_fetch_row來處理資料。最後,使用mysql_free_result釋放查詢占用的記憶體資源。

一次提取所有資料:mysql_store_result

[cpp]  view plain  copy

  1. // 相關函數:  
  2. // 這是在成功調用mysql_query之後使用此函數,這個函數将立刻儲存在用戶端中傳回的所有資料。它傳回一個指向結果集結構的指針,如果失敗傳回NULL  
  3. MYSQL_RES *mysql_store_result(MYSQL *connection);  
  4. // 這個函數接受由mysql_store_result傳回的結果結構集,并傳回結構集中的行數  
  5. my_ulonglong mysql_num_rows(MYSQL_RES *result);  
  6. // 這個函數從使用mysql_store_result得到的結果結構中提取一行,并把它放到一個行結構中。當資料用完或發生錯誤時傳回NULL.  
  7. MYSQL_ROW mysql_fetch_row(MYSQL_RES *resutl);  
  8. // 這個函數用來在結果集中跳轉,設定将會被下一個mysql_fetch_row操作傳回的行。參數offset是一個行号,它必須是在0~結果總行數-1的範圍内。傳遞  
  9. // 0将會導緻下一個mysql_fetch_row調用傳回結果集中的第一行。  
  10. void mysql_data_seek(MYSQL_RES *result, my_ulonglong offset);  
  11. // 傳回一個偏移值,它用來表示結果集中的目前位置。它不是行号,不能把它用于mysql_data_seek  
  12. MYSQL_ROW_OFFSET mysql_row_tell(MYSQL_RES *result);  
  13. // 這将在結果集中移動目前的位置,并傳回之前的位置  
  14. MYSQL_ROW_OFFSET mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET offset);  
  15. // 完成所有對資料的操作後,必須總是調用這個來善後處理  
  16. void mysql_free_result(MYSQL_RES *result);  

示例代碼:

[cpp]  view plain  copy

  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <string.h>  
  4. #include "mysql.h"  
  5. #include "errmsg.h"  
  6. #include "mysqld_error.h"  
  7. MYSQL conn;  
  8. MYSQL_RES *res_ptr;  
  9. MYSQL_ROW sqlrow;  
  10. void connection(const char* host, const char* user, const char* password, const char* database) {  
  11.     mysql_init(&conn); // 注意取位址符&  
  12.     if (mysql_real_connect(&conn, host, user, password, database, 0, NULL, 0)) {  
  13.         printf("Connection success!\n");  
  14.     } else {  
  15.         fprintf(stderr, "Connection failed!\n");  
  16.         if (mysql_errno(&conn)) {  
  17.             fprintf(stderr, "Connection error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  18.         }  
  19.         exit(EXIT_FAILURE);  
  20.     }  
  21. }  
  22. int main (int argc, char *argv[]) {  
  23.     connection("localhost", "root", "shuang", "shuangde");  
  24.     int res = mysql_query(&conn, "SELECT * from student");  
  25.     if (res) {  
  26.         fprintf(stderr, "SELECT error: %s\n", mysql_error(&conn));  
  27.     } else {  
  28.         res_ptr = mysql_store_result(&conn);  
  29.         if (res_ptr) {  
  30.             printf("Retrieved %lu rows\n", (unsigned long)mysql_num_rows(res_ptr));   
  31.             while ((sqlrow = mysql_fetch_row(res_ptr))) {  
  32.                 printf("Fetched data...\n") ;  
  33.             }  
  34.             if (mysql_errno(&conn)) {  
  35.                 fprintf(stderr, "Retrive error: %s\n", mysql_error(&conn));  
  36.             }  
  37.             mysql_free_result(res_ptr);  
  38.         }   
  39.     }  
  40.     mysql_close(&conn);  
  41.     exit(EXIT_SUCCESS);  
  42. }  

一次提取一行資料:mysql_use_result

使用方法和mysql_store_result完全一樣,把上面代碼的mysql_store_result改為mysql_use_result即可。

mysql_use_result具備資源管理方面的實質性好處,更好地平衡了網絡負載,以及減少了可能非常大的資料帶來的存儲開銷,但是不能與mysql_data_seek、mysql_row_seek、mysql_row_tell、mysql_num_rows一起使用。如果資料比較少,用mysql_store_result更好。

處理傳回的資料

  [cpp]  view plain  copy

  1. // 相關函數和定義:  
  2. // 傳回結果集中的字段(列)數目  
  3. unsigned int mysql_field_count(MYSQL *connection);  
  4. // 将中繼資料和資料提取到一個新的結構中  
  5. MYSQL_FIELD *mysql_fetch_field(MYSQL *result);  
  6. // 這個函數用來覆寫目前的字段編号,該編号會随着每次mysql_fetch_field調用而自動增加。如果給offset傳遞0,那麼将跳回第1列  
  7. MYSQL_FIELD_OFFSET mysql_field_seek(MYSQL *result, MYSQL_FIELD_OFFSET offset);  
  8. // MYSQL_FIELD定義在sql.h中,是指向字段結構資料的指針,有關于列的資訊。有成員:  
  9. char *name;     // 列名,為字元串  
  10. char *table;    // 列所屬表名  
  11. char *def;      // 如果調用mysql_list_fields,它将包含該列的預設值  
  12. enum enum_field_types type;  // 列類型  
  13. unsigned int length;         // 列寬  
  14. unsigned int max_length;     // 如果使用mysql_store_result,它将包含以位元組為機關的提取的最長列值的長度,如果使用mysql_use_result,将不會被設定  
  15. unsigned int flags;          // 關于列定義的标志,與得到的資料無關.常見的标志的含義有:  
  16.                              // NOT_NULL_FLAG  
  17.                              // PRI_KEY_FLAG  
  18.                              // UNSIGNED_FLAG  
  19.                              // AUTO_INCREMENT_FLAG  
  20.                              // BINARY_FLAG等  
  21. unsigned int decimals;       // 小數點後的數字個數。  
  22. // 列類型相當廣泛,完整的清單見頭檔案mysql_com.h,常見的有:  
  23. //  FIELD_TYPE_DECIMAL  
  24. //  FIELD_TYPE_LONG  
  25. //  FIELD_TYPE_STRING  
  26. //  FIELD_TYPE_VAR_STRING  
  27. //一個特别有用的預定義宏: IS_NUM,當字段類型為數字時,傳回true  

代碼示例:

[cpp]  view plain  copy

  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <string.h>  
  4. #include "mysql.h"  
  5. #include "errmsg.h"  
  6. #include "mysqld_error.h"  
  7. MYSQL conn;  
  8. MYSQL_RES *res_ptr;  
  9. MYSQL_ROW sqlrow;  
  10. void connection(const char* host, const char* user, const char* password, const char* database) {  
  11.     mysql_init(&conn); // 注意取位址符&  
  12.     if (mysql_real_connect(&conn, host, user, password, database, 0, NULL, 0)) {  
  13.         printf("Connection success!\n");  
  14.     } else {  
  15.         fprintf(stderr, "Connection failed!\n");  
  16.         if (mysql_errno(&conn)) {  
  17.             fprintf(stderr, "Connection error %d: %s\n", mysql_errno(&conn), mysql_error(&conn));  
  18.         }  
  19.         exit(EXIT_FAILURE);  
  20.     }  
  21. }  
  22. void display_row() {  
  23.     unsigned int field_count = mysql_field_count(&conn);  
  24.     int i = 0;  
  25.     while (i < field_count) {  
  26.         if (sqlrow[i]) printf("%s ", sqlrow[i]);  
  27.         else printf("NULL");  
  28.         i++;  
  29.     }  
  30.     printf("\n");  
  31. }  
  32. void display_header() {  
  33.     MYSQL_FIELD *field_ptr;  
  34.     printf("Column details:\n");  
  35.     while ((field_ptr = mysql_fetch_field(res_ptr)) != NULL) {  
  36.         printf("\t Name: %s\n", field_ptr->name);      
  37.         printf("\t Table: %s\n", field_ptr->table);    
  38.         printf("\t Type: ");  
  39.         if (IS_NUM(field_ptr->type)) {  
  40.             printf("Numeric field\n");    
  41.         } else {  
  42.             switch(field_ptr->type) {  
  43.                 case FIELD_TYPE_VAR_STRING:  
  44.                     printf("VARCHAR\n");  
  45.                     break;  
  46.                 case FIELD_TYPE_LONG:  
  47.                     printf("LONG");  
  48.                     break;  
  49.                 default:  
  50.                     printf("Type is %d, check in msyql_com.h\n", field_ptr->type);  
  51.             }     
  52.         }  
  53.         printf("\t Max width %ld\n", field_ptr->length);  
  54.         if (field_ptr->flags & AUTO_INCREMENT_FLAG)  
  55.             printf("\t Auto increments\n");  
  56.         printf("\n");  
  57.     }  
  58. }  
  59. int main (int argc, char *argv[]) {  
  60.     connection("localhost", "root", "shuang", "shuangde");  
  61.     int res = mysql_query(&conn, "SELECT * from student");  
  62.     if (res) {  
  63.         fprintf(stderr, "SELECT error: %s\n", mysql_error(&conn));  
  64.     } else {  
  65.         res_ptr = mysql_use_result(&conn);  
  66.         if (res_ptr) {  
  67.             int first = 1;  
  68.             while ((sqlrow = mysql_fetch_row(res_ptr))) {  
  69.                 if (first) {  
  70.                     display_header();  
  71.                     first = 0;    
  72.                 }  
  73.                 display_row();  
  74.             }  
  75.             if (mysql_errno(&conn)) {  
  76.                 fprintf(stderr, "Retrive error: %s\n", mysql_error(&conn));  
  77.             }  
  78.             mysql_free_result(res_ptr);  
  79.         }   
  80.     }  
  81.     mysql_close(&conn);  
  82.     exit(EXIT_SUCCESS);  
  83. }  

繼續閱讀