編譯方法:代碼:gcc$(mysql_config--cflags)xxx.c-oxxx$(mysql_config--libs)可以用以下代碼測試一下代碼:/*SimpleCprogramt" />

日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

[zz]安裝mysql 獲得 mysql.h 建立C接口

系統 2227 0
先安裝mysql
代碼:
sudo apt-get install mysql-server mysql-client

再裝開發包
代碼:
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);
}

會輸出現有數據庫和表內容。

[zz]安裝mysql 獲得 mysql.h 建立C接口


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

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

【本文對您有幫助就好】

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

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 龙游县| 北辰区| 镇原县| 天祝| 无锡市| 黄山市| 神农架林区| 尖扎县| 濉溪县| 巴楚县| 交口县| 泽库县| 云安县| 儋州市| 陇川县| 齐齐哈尔市| 巴楚县| 全椒县| 漳平市| 根河市| 清镇市| 兴业县| 琼结县| 蓬莱市| 黄陵县| 宿松县| 通山县| 晋中市| 深州市| 津南区| 西峡县| 花莲市| 固镇县| 衡阳市| 石渠县| 长宁县| 柞水县| 东兰县| 自治县| 衢州市| 陇川县|