1. ホーム
  2. c++

[解決済み] mysql.h ファイルが見つかりません。

2022-02-02 06:51:52

質問

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

解決方法は?

その mysql.h ファイルから libmysqlclient-dev Ubuntuパッケージは、以下の場所にあります。 /usr/include/mysql/mysql.h .

しかし、これはコンパイラの標準的な検索パスではありません。 /usr/include があります。

一般的には mysql.h ヘッダは、次のようにコード内に記述します。

#include <mysql/mysql.h>

ソースにディレクトリオフセットを指定したくない場合は、ディレクトリオフセットを指定するために -I フラグを gcc に渡して、インクルードサーチディレクトリを追加で指定すれば、既存のコードを変更する必要はありません。

などです。

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