標籤:
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)
可以用以下代碼測試一下
代碼:
#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);
if (!mysql_real_connect(conn, server,
user, password, database, 0, NULL, 0)) {
fprintf(stderr, "%s\n", mysql_error(conn));
exit(1);
}
if (mysql_query(conn, "show tables")) {
fprintf(stderr, "%s\n", mysql_error(conn));
exit(1);
}
res = mysql_use_result(conn);
printf("MySQL Tables in mysql database:\n");
while ((row = mysql_fetch_row(res)) != NULL)
printf("%s \n", row[0]);
mysql_free_result(res);
mysql_close(conn);
}
http://blog.sina.com.cn/s/blog_494e45fe0100k9p8.html
c 串連資料庫 mysql