2#include3#include4#include56intmain(intargc,char**argv){7printf("mysqlclientversion:%s\n",mysql_get_client_info());8retur" />

亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

[c/c++] c 操作mysql數(shù)據(jù)庫

系統(tǒng) 2891 0

[c/c++] c 操作mysql數(shù)據(jù)庫 - bluefrog - 博客園

[c/c++] c 操作mysql數(shù)據(jù)庫

輸出mysql版本

            
              1
            
             #include <my_global.h>

            
              2
            
             #include <mysql.h>

            
              3
            
             #include <stdlib.h>

            
              4
            
             #include <stdio.h>

            
              5
            
            
              6
            
            
              int
            
             main(
            
              int
            
             argc,
            
              char
            
             **
            
              argv) {

            
            
              7
            
                 printf(
            
              "
            
            
              mysql client version:%s\n
            
            
              "
            
            
              ,mysql_get_client_info());

            
            
              8
            
            
              return
            
            
              0
            
            
              ;

            
            
              9
            
             }
          

編譯

            
              gcc
            
             version.c -o version $(mysql_config --cflags --libs)
          

結(jié)果

            $ ./
            
              version
mysql client version:
            
            
              5.1
            
            .
            
              63
            
          

?

創(chuàng)建DB

            
               1
            
             #include <my_global.h>

            
               2
            
             #include <mysql.h>

            
               3
            
             #include <stdio.h>

            
               4
            
             #include <stdlib.h>

            
               5
            
            
               6
            
            
              int
            
             main(
            
              int
            
             argc,
            
              char
            
             **
            
              argv) {

            
            
               7
            
                 MYSQL *
            
              conn;

            
            
               8
            
            
               9
            
                 conn =
            
               mysql_init(NULL);

            
            
              10
            
            
              if
            
            (conn ==
            
               NULL) {

            
            
              11
            
                     printf(
            
              "
            
            
              Error %u:%s\n
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              12
            
            
                      exit(EXIT_FAILURE);

            
            
              13
            
            
                  }

            
            
              14
            
            
              15
            
            
              //
            
            
               host user password 
            
            
              16
            
            
              if
            
            (mysql_real_connect(conn,
            
              "
            
            
              localhost
            
            
              "
            
            ,
            
              "
            
            
              root
            
            
              "
            
            ,
            
              "
            
            
              admin
            
            
              "
            
            ,NULL,
            
              0
            
            ,NULL,
            
              0
            
            ) ==
            
               NULL) {

            
            
              17
            
                     printf(
            
              "
            
            
              Error %u:%s\n
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              18
            
            
                      exit(EXIT_FAILURE);

            
            
              19
            
            
                  }

            
            
              20
            
            
              21
            
            
              char
            
            * sql = 
            
              "
            
            
              CREATE DATABASE IF NOT EXISTS test_cdb
            
            
              "
            
            
              ;

            
            
              22
            
            
              //
            
            
              char* sql = "CREATE database test_cdb";
            
            
              23
            
            
              if
            
            
              (mysql_query(conn,sql)) {

            
            
              24
            
                     printf(
            
              "
            
            
              Error %u:%s\n
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              25
            
            
                      exit(EXIT_FAILURE);

            
            
              26
            
            
                  }

            
            
              27
            
            
              28
            
            
                  mysql_close(conn);

            
            
              29
            
            
              30
            
            
                  exit(EXIT_SUCCESS);

            
            
              31
            
             }
          

創(chuàng)建Table

            
               1
            
             #include <my_global.h>

            
               2
            
             #include <mysql.h>

            
               3
            
             #include <stdio.h>

            
               4
            
             #include <stdlib.h>

            
               5
            
            
               6
            
            
              int
            
             main(
            
              int
            
             argc,
            
              char
            
             **
            
              argv) {

            
            
               7
            
                 MYSQL *
            
              conn;

            
            
               8
            
            
               9
            
                 conn =
            
               mysql_init(NULL);

            
            
              10
            
            
              //
            
            
               host user password dbname
            
            
              11
            
            
              if
            
            (mysql_real_connect(conn,
            
              "
            
            
              localhost
            
            
              "
            
            ,
            
              "
            
            
              root
            
            
              "
            
            ,
            
              "
            
            
              admin
            
            
              "
            
            ,
            
              "
            
            
              test_cdb
            
            
              "
            
            ,
            
              0
            
            ,NULL,
            
              0
            
            ) ==
            
               NULL) {

            
            
              12
            
                     printf(
            
              "
            
            
              Error %u:%s
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              13
            
            
                      exit(EXIT_FAILURE);

            
            
              14
            
            
                  }

            
            
              15
            
            
              16
            
            
              char
            
            * sql = 
            
              "
            
            
              CREATE TABLE IF NOT EXISTS test(name VARCHAR(25));
            
            
              "
            
            
              ;

            
            
              17
            
            
              if
            
            
              (mysql_query(conn,sql)) {

            
            
              18
            
                     printf(
            
              "
            
            
              Error %u:%s
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              19
            
            
                      exit(EXIT_FAILURE);

            
            
              20
            
            
                  }

            
            
              21
            
                 sql = 
            
              "
            
            
              INSERT INTO test VALUES('test1')
            
            
              "
            
            
              ;

            
            
              22
            
            
              if
            
            
              (mysql_query(conn,sql)) {

            
            
              23
            
                     printf(
            
              "
            
            
              Error %u:%s
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              24
            
            
                      exit(EXIT_FAILURE);

            
            
              25
            
            
                  }

            
            
              26
            
            
              27
            
            
                  mysql_close(conn);

            
            
              28
            
            
                  exit(EXIT_SUCCESS);

            
            
              29
            
             }
          

查詢

            
               1
            
             #include <my_global.h>

            
               2
            
             #include <mysql.h>

            
               3
            
             #include <stdio.h>

            
               4
            
             #include <stdlib.h>

            
               5
            
            
               6
            
            
              int
            
             main(
            
              int
            
             argc,
            
              char
            
             **
            
              argv) {

            
            
               7
            
                 MYSQL *
            
              conn;

            
            
               8
            
                 MYSQL_RES *
            
              result;

            
            
               9
            
            
                  MYSQL_ROW row;

            
            
              10
            
                 MYSQL_FIELD *
            
              field;

            
            
              11
            
            
              12
            
            
              int
            
            
               num_fields;

            
            
              13
            
            
              int
            
            
               i;

            
            
              14
            
            
              int
            
             j = 
            
              0
            
            
              ;

            
            
              15
            
            
              16
            
                 conn =
            
               mysql_init(NULL);

            
            
              17
            
            
              if
            
            (mysql_real_connect(conn,
            
              "
            
            
              localhost
            
            
              "
            
            ,
            
              "
            
            
              root
            
            
              "
            
            ,
            
              "
            
            
              admin
            
            
              "
            
            ,
            
              "
            
            
              test_cdb
            
            
              "
            
            ,
            
              0
            
            ,NULL,
            
              0
            
            ) ==
            
               NULL) {

            
            
              18
            
                     printf(
            
              "
            
            
              Error %u:%s
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              19
            
            
                      exit(EXIT_FAILURE);

            
            
              20
            
            
                  }

            
            
              21
            
            
              22
            
            
              char
            
            * sql = 
            
              "
            
            
              SELECT * FROM test
            
            
              "
            
            
              ;

            
            
              23
            
            
              if
            
            
              (mysql_query(conn,sql)) {

            
            
              24
            
                     printf(
            
              "
            
            
              Error %u:%s
            
            
              "
            
            
              ,mysql_errno(conn),mysql_error(conn));

            
            
              25
            
            
                      exit(EXIT_FAILURE);

            
            
              26
            
            
                  }

            
            
              27
            
                 result =
            
               mysql_store_result(conn);

            
            
              28
            
                 num_fields = mysql_num_fields(result); 
            
              //
            
            
               記錄項(xiàng)數(shù)
            
            
              29
            
            
              30
            
            
              while
            
            ((row =
            
               mysql_fetch_row(result))) {

            
            
              31
            
            
              //
            
            
               for(int i = 0; i < num_fields;i++) { 
            
            
              //
            
            
               allowed c99 mode
            
            
              32
            
            
              for
            
            (i = 
            
              0
            
            ; i < num_fields;i++
            
              ) {

            
            
              33
            
            
              if
            
            (j == 
            
              0
            
            
              ) {

            
            
              34
            
            
              //
            
            
               struct ?
            
            
              35
            
            
              while
            
            (field =
            
               mysql_fetch_field(result)) {

            
            
              36
            
                                 printf(
            
              "
            
            
              %s 
            
            
              "
            
            ,field->
            
              name);

            
            
              37
            
            
                              }

            
            
              38
            
                             printf(
            
              "
            
            
              \n
            
            
              "
            
            
              );

            
            
              39
            
            
                          }

            
            
              40
            
                         printf(
            
              "
            
            
              %s 
            
            
              "
            
            ,row[i]? row[i] : 
            
              "
            
            
              NULL
            
            
              "
            
            
              );

            
            
              41
            
            
                      }

            
            
              42
            
                     printf(
            
              "
            
            
              \n
            
            
              "
            
            
              );

            
            
              43
            
                     j++
            
              ;

            
            
              44
            
            
                  }

            
            
              45
            
            
                  mysql_free_result(result);

            
            
              46
            
            
              47
            
            
                  mysql_close(conn);

            
            
              48
            
            
                  exit(EXIT_SUCCESS);

            
            
              49
            
             }
          

?

?

[c/c++] c 操作mysql數(shù)據(jù)庫


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 天天拍夜夜操 | 国产成人综合亚洲亚洲欧美 | 亚洲国产精品线播放 | 美女又xx又xx免费 | 亚洲专区第一页 | 5388国产亚洲欧美在线观看 | 欧美成人毛片免费网站 | 爱搞逼综合 | 国内精品久久久久久久星辰影视 | 久久久久琪琪免费影院 | 国产特级毛片aaaaaaa高清 | 奇米影视亚洲狠狠色 | 久久精热 | 国产一区二区三区欧美精品 | 天天做天天看夜夜爽毛片 | 亚洲日本人成中文字幕 | 美女羞羞视频网站 | 欧美视频亚洲 | 免费观看a黄一级视频 | 久久中文娱乐网 | 国产在线精品福利91香蕉 | 欧美精品成人一区二区视频一 | 伊人丁香狠狠色综合久久 | 神马老子午夜 | 免费一级黄色毛片 | 一个色综合亚洲色综合 | 久久久久毛片免费观看 | 久久香蕉国产线看观看精品yw | 欧美在线一级毛片观看 | 9l国产精品久久久久麻豆 | 久久精品国产亚洲高清 | aaaaa级毛片| 鲁一鲁射一射 | 美国美女一级毛片免费全 | 亚洲天堂久久新 | 特级一级毛片视频免费观看 | 国内精品免费久久影院 | 91九色首页 | 亚洲伦理中文字幕一区 | 日韩不卡一区二区三区 | 一级毛片一级毛片一级毛片aa |