mysql.h:没有这样的文件或目录

时间:2019-04-25 05:18:19

标签: mysql c include c-preprocessor header-files

我在Windows环境中使用代码块。这是我的C代码,用于连接mysql数据库。

/* 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.h : No such file or directory

何时在代码块中使用c ++,包括mysql.h都没有问题。但是当我使用c进行操作时,会弹出上述错误。

2 个答案:

答案 0 :(得分:1)

要在Windows计算机上使用mysql,必须下载mysql connector for windows。安装后,保留默认值,可以在以下位置找到头文件和lib文件。

  

C:\ Program Files \ MySQL \ Connector C ++ 8.0

     

C:\ Program Files \ MySQL \ MySQL Server 8.0

通常,您必须为您检测正确的标头和库并正确链接它们。请参阅this tutorial

答案 1 :(得分:0)

mysql的解决方案

安装mysql服务器,然后进入mysql服务器的include目录,然后将文件夹mysql和头文件复制到文件夹中,例子

C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.28.29910\include

然后将 setup_windows.py 中的注释添加到 mysqlclent 目录行 client = 'mariadbclient' 并取消注释前一行,然后复制 mysql server lib目录下的mysqlclient.lib文件放入

C:\Program Files (x86)\Windows Kits\10\Lib\10.0.16299.0\ucrt\x64.

这个解决方案对我有用。