找不到 mysql.h 文件

新手上路,请多包涵

我正在尝试在 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

原文由 Begayim Muratalina 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.2k
2 个回答

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

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

您通常会在代码中使用 mysql.h 标头,如下所示:

 #include <mysql/mysql.h>

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

例如。

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

原文由 Austin Phillips 发布,翻译遵循 CC BY-SA 3.0 许可协议

这对我有用

$ gcc dbconnect.c -o dbconnect -lmysqlclient
$ ./dbconnect

-lmysqlclient 是必须的。

我建议使用以下符号而不是使用 -I 编译标志。

 #include <mysql/mysql.h>

原文由 Rahul 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏