激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

        Ubuntu下安裝MySQL獲得 mysql.h 建立C接口

        發(fā)布時間:  2012/9/24 17:09:10

        在Ubuntu下費(fèi)了好長時間終于讓C操作MySQL成功了,在此把方法記下來,留著以后用。先安裝MySQL
        代碼:
        sudo apt-get install mysql-server mysql-client

        再裝開發(fā)包
        代碼:
        sudo apt-get install libmysqlclient15-dev

        安裝完以后,C代碼里添加頭文件 -
         

        代碼:
        #include <mysql.h>

        編譯方法:
        代碼:
        gcc $(mysql_config --cflags) xxx.c -o xxx $(mysql_config --libs)


        可以用以下代碼測試一下
        代碼:
        /* Simple C program that connects to MySQL Database server*/
        #include <mysql.h>
        #include <stdio.h>

        main() {
            MYSQL *conn;
            MYSQL_RES *res;
            MYSQL_ROW row;

           char *server = "localhost";
           char *user = "root";
           char *password = ""; /* 此處改成你的密碼 */
           char *database = "mysql";

            conn = mysql_init(NULL);

           /* Connect to database */
           if (!mysql_real_connect(conn, server,
                  user, password, database, 0, NULL, 0)) {
              fprintf(stderr, "%s\n", mysql_error(conn));
              exit(1);
           }

           /* send SQL query */
           if (mysql_query(conn, "show tables")) {
              fprintf(stderr, "%s\n", mysql_error(conn));
              exit(1);
           }

            res = mysql_use_result(conn);

           /* output table name */
           printf("MySQL Tables in mysql database:\n");
           while ((row = mysql_fetch_row(res)) != NULL)
              printf("%s \n", row[0]);

           /* close connection */
            mysql_free_result(res);
            mysql_close(conn);
        }

        會輸出現(xiàn)有數(shù)據(jù)庫和表內(nèi)容。

         


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國五強(qiáng)!虛擬主機(jī)域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號
          0
         
         
         
         

        0371-60135900
        7*24小時客服服務(wù)熱線