gpt4 book ai didi

c++ - 找不到 mysql.h 文件

转载 作者:IT老高 更新时间:2023-10-28 12:42:09 26 4
gpt4 key购买 nike

我正在尝试在 ubuntu 12.04 中安装 c++ 和 mysql 之间的连接。我已经安装了 mysql-client、mysql-server、libmysqlclient15-dev、libmysql++-dev。但是当我尝试编译代码时出现错误:mysql.h 没有这样的文件。我查看了文件夹,有 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

最佳答案

libmysqlclient-dev Ubuntu 软件包中的 mysql.h 文件位于 /usr/include/mysql/mysql.h

这不是编译器的标准搜索路径,但 /usr/include 是。

您通常会像这样在代码中使用 mysql.h header :

#include <mysql/mysql.h>

如果您不想在源代码中指定目录偏移量,则可以将 -I 标志传递给 gcc(如果您正在使用)以指定额外的包含搜索目录,然后你就不需要改变你现有的代码了。

例如。

gcc -I/usr/include/mysql ...

关于c++ - 找不到 mysql.h 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14604228/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com