linux c mysql 編程

來源:互聯網
上載者:User

先轉一個

//Test1.c:

#include <stdio.h>
#include <mysql.h>

int main(int argc, char *argv[])
{
 int i;
 char *names[3];
 names[0] = "haha";
 names[1] = "xixi";
 names[2] = "wuwu";

 char execsql[1024];

 MYSQL mysql_conn;

 if(mysql_init(&mysql_conn) != NULL){
  if(mysql_real_connect(&mysql_conn, "localhost", "root", "xiaodan", "test", MYSQL_PORT, NULL, 0) != NULL)
  {
   printf("Good connection!\n");
   sprintf(execsql, "create database one_db");
   mysql_real_query(&mysql_conn, execsql, strlen(execsql));

//   if (!mysql_create_db(&mysql_conn, "one_db")){
   i = mysql_affected_rows(&mysql_conn);
   if (i<=0){
    printf("Can not create database one_db \n");
   }
   else{
    mysql_select_db(&mysql_conn, "one_db");
    sprintf(execsql, "create table girls(name char(10), age int(8))");
    mysql_real_query(&mysql_conn, execsql, strlen(execsql));
    mysql_select_db(&mysql_conn, "one_db");
    for(i=0; i<3; i++){
     sprintf(execsql,"insert into girls values('%s', %d)", names[i], 19+i);
     printf("%s \n", execsql);
     mysql_query(&mysql_conn, execsql);
    }
   }
  }else{
   printf("Connection Failed!\n");
  }
 }else{
  printf("Initialization Failed.\n");
  return -1;
 }

 mysql_close(&mysql_conn);
 return 0;
}

編譯命令:gcc -g -o test1   -I/usr/include/mysql test1.c -L/usr/lib/mysql -lmysqlclient -lz

//Test2.c

#include <stdio.h>

//#include <dmalloc.h>

#include <mysql.h>

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

    MYSQL mysql_conn; /* Connection handle */

    MYSQL_RES *mysql_result; /* Result handle */

    MYSQL_ROW mysql_row; /* Row data */

    int f1, f2, num_row, num_col;

    if (mysql_init(&mysql_conn) != NULL) {

        if (mysql_real_connect(&mysql_conn, "localhost", "root", "xiaodan", "one_db", MYSQL_PORT, NULL, 0) != NULL) {

            if (mysql_query(&mysql_conn, "select * from girls") == 0) {

    /*  以上我們執行select語句,查詢表中所以記錄*/

                mysql_result = mysql_store_result(&mysql_conn); // get the result from the executing select query

                num_row = mysql_num_rows(mysql_result); /* Get the no. of row */

                num_col = mysql_num_fields(mysql_result); /* Get the no. of column */

                for (f1 = 0; f1 < num_row; f1++) {

//                  for (f2 = 0; f2 < num_col; f2++) {

                        mysql_row = mysql_fetch_row(mysql_result); /* Fetch one by one */

                        printf("[Row %d, Col 0] ==> [%s]\n", f1, mysql_row[0]);
   printf("[Row %d, Col 1] ==> [%s]\n", f1, mysql_row[1]);

//                  }

                }

            } else {

                (void) printf("Query fails\n");

            }

        } else {

            (void) printf("Connection fails\n");

        }

    } else {

        (void) printf("Initialization fails\n");

    }

    mysql_free_result(mysql_result);

    mysql_close(&mysql_conn);

    return 0;

}

編譯命令:gcc -g -o test2   -I/usr/include/mysql test2.c -L/usr/lib/mysql -lmysqlclient -lz

注意:使用rpm包安裝的資料庫沒有用於開發的標頭檔和庫,需要下載MySQL-devel的rpm開發包

 

 下面的是我自己寫的一個

 

/*
*
*file name: mysql.c
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "mysql.h"  

int main(void)
{
  const char *host = "localhost";
  const char *user = "root";
  const char *pass = "";
  const char *db   = "mysql";
 /* 定義mysql變數 */
     MYSQL mysql;
     MYSQL_RES *rs;
     MYSQL_ROW row;
     mysql_init(&mysql); /* 初始化 */
/* 串連資料庫 */
if (!mysql_real_connect(&mysql, host, user, pass, db, 0, NULL, 0))
 { 
          printf("%s", mysql_error(&mysql));
       
 }
  char *sql = "select host,user from user order by rand()";
  if (mysql_query(&mysql, sql)!=0) 
  { /* 查詢 */
          printf( "%s", mysql_errno(&mysql), mysql_error(&mysql));
         
   }
   rs = mysql_store_result(&mysql); /* 擷取查詢結果 */
   while ((row = mysql_fetch_row(rs))) 
   {      /* 擷取每一行記錄 */
          printf( "%s---%s", row[0], row[1]);
   }
   mysql_free_result(rs); /* 釋放結果集 */
   mysql_close(&mysql); /* 關閉串連 */
   return 1;
}

編譯:$gcc -g -o mysql   -I/usr/local/mysql/include/mysql mysql.c -L/usr/locla/mysql/lib/mysql -lmysqlclient -lz
如果啟動並執行時候報libmysqlclient.so.16 找不到錯誤,運行下面命令。
$ln -s /usr/local/mysql/lib/mysql/libmysqlclient.so.16 /lib/libmysqlclient.so.16

如果運行程式:

 $gcc -g -o mysql   -I/usr/local/mysql/include/mysql mysql.c -L/usr/locla/mysql/lib/mysql -lmysqlclient -lz 會在目前的目錄產生 mysql檔案

./mysql運行

或者

/path-to -mysql/mysql

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.