我正在尝试在ubuntu 12.04中安装c ++和mysql之间的连接。我安装了mysql-client,mysql-server,libmysqlclient15-dev,libmysql ++ - dev。但是当我尝试编译代码时,我得到了错误:mysql.h there is no such file
。我看着文件夹,有mysql.h文件,我无法理解为什么它找不到它。这是我的代码:
/* 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";
//set the password for mysql server here
char *password = "*********"; /* set me first */
char *database = "Real_flights";
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);
}
它有效,但现在我面临另一个错误:
mysql.c: In function ‘main’:
mysql.c:21: warning: incompatible implicit declaration of built-in function ‘exit’
mysql.c:27: warning: incompatible implicit declaration of built-in function ‘exit’
/tmp/ccinQBp8.o: In function `main':
mysql.c:(.text+0x3e): undefined reference to `mysql_init'
mysql.c:(.text+0x5e): undefined reference to `mysql_real_connect'
mysql.c:(.text+0x70): undefined reference to `mysql_error'
mysql.c:(.text+0xa5): undefined reference to `mysql_query'
mysql.c:(.text+0xb7): undefined reference to `mysql_error'
mysql.c:(.text+0xe7): undefined reference to `mysql_use_result'
mysql.c:(.text+0x11c): undefined reference to `mysql_fetch_row'
mysql.c:(.text+0x133): undefined reference to `mysql_free_result'
mysql.c:(.text+0x141): undefined reference to `mysql_close'
collect2: ld returned 1 exit status
答案 0 :(得分:48)
mysql.h
Ubuntu软件包中的libmysqlclient-dev
文件位于/usr/include/mysql/mysql.h
。
这不是编译器的标准搜索路径,但是/usr/include
是。
您通常会在代码中使用mysql.h
标头,如下所示:
#include <mysql/mysql.h>
如果您不想在源中指定目录偏移量,可以将-I
标志传递给gcc(如果这就是您正在使用的那个)以指定其他包含搜索目录,然后您就不会不需要更改现有代码。
例如
gcc -I/usr/include/mysql ...
答案 1 :(得分:23)
只需使用
$ apt-get install libmysqlclient-dev
将自动拉出最新的libmysqlclient18-dev
我已经看到旧版本的libmysqlclient-dev(如15)将mysql.h置于奇怪的位置,例如/ usr / local / include等。
否则,只需做一个
$ find /usr/ -name 'mysql.h'
并将带有-I标志的mysql.h
的文件夹路径放在make文件中。不干净但会起作用。
答案 2 :(得分:14)
对于CentOS / RHEL:
yum install mysql-devel -y
答案 3 :(得分:3)
你可能没有包含mysql头文件的路径,我认为可以在/ usr / include / mysql上找到几个unix系统。请参阅this post,它可能会有帮助。
顺便说一句,与上面that guy的问题有关,关于合成配置。可以将以下内容添加到〜/ .vimrc:
let b:syntastic_c_cflags = '-I/usr/include/mysql'
您可以随时在github上查看开发人员的wiki page。享受!
答案 4 :(得分:2)
您必须让编译器知道可以找到mysql.h文件的位置。这可以通过在编译之前给出标题的路径来完成。在IDE中,您有一个设置,您可以在其中提供这些路径。
这个link为您提供了有关编译时使用哪些选项的更多信息。
解决您的第二个问题 您需要链接库。链接器需要知道库文件的位置,它们具有您使用的mysql函数的实现。
这个link为您提供了有关如何链接库的更多信息。
答案 5 :(得分:2)
我想你可以尝试这个gcc -I / usr / include / mysql * .c -L / usr / lib / mysql -lmysqlclient -o *
答案 6 :(得分:1)
这对我有用
result_list = [['255.255.255.0', 5, 6], ['255.255.255.1', 7, 8]]
-lmysqlclient是必须的。
我个人建议使用以下符号,而不要使用-I编译标志。
$ gcc dbconnect.c -o dbconnect -lmysqlclient
$ ./dbconnect
答案 7 :(得分:0)
对于使用 Eclipse IDE的用户。
在将完整的MySQL与 mysql客户端和 mysql服务器以及任何 mysql dev 库一起安装后,
您需要将以下内容告知 Eclipse IDE
这是您的处理方法。
要添加 mysql.h
1 。 GCC C编译器->包含->包含路径(-l),然后单击+并将路径添加到您的 mysql.h 。在我的情况下,它是 / usr / include / mysql
要将 mysqlclient 库和搜索路径添加到 mysqlclient 库的位置,请参见步骤 3 和 4 。
2 。 GCC C链接器->库->库(-l),然后单击 + 并添加 mysqlcient
3 。 GCC C链接器->库->库搜索路径(-L),然后单击 + 并将搜索路径添加到 mysqlcient 。在我的情况下是 / usr / lib64 / mysql ,因为我使用的是 64位Linux OS 和 64位MySQL 数据库。
否则,如果您使用的是 32位Linux操作系统,则可能会在 / usr / lib / mysql
中找到它答案 8 :(得分:0)
这对我有用
yum install mysql
它会安装mysql客户端然后
pip install mysqlclient