私は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
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 ...
ただ使う
$ apt-get install libmysqlclient-dev
最新のlibmysqlclient18-devを自動的にプルします
Libmysqlclient-devの古いバージョン(15など)がmysql.hを奇妙な場所に置くのを見てきました。/usr/local/includeなど.
それ以外の場合は、単に
$ find /usr/ -name 'mysql.h'
そして、mysql.h
を使用して、makeファイルに-Iフラグを付けます。きれいではありませんが動作します。
CentOS/RHELの場合:
yum install mysql-devel -y
あなたはこれを試すことができると思うgcc -I/usr/include/mysql *。c -L/usr/lib/mysql -lmysqlclient -o *
Eclipse IDE。を使用している人向け
mysql clientおよびmysql serverおよびすべてのmysql devライブラリとともに完全なMySQLをインストールした後、
次のことをEclipse IDEに伝える必要があります。
以下にその方法を示します。
追加するにはmysql.h
1。 GCC Cコンパイラ->インクルード->インクルードパス(-l)その後、+をクリックして、パスを追加しますmysql.h私の場合は/ usr/include/mysql
mysqlclient libraryおよびsearch pathをmysqlclient libraryに追加するには、手順を参照してくださいおよび4 =。
2。 GCC Cリンカー->ライブラリ->ライブラリ(-l)その後、+をクリックして、mysqlcientを追加します。
。 GCC Cリンカー->ライブラリ->ライブラリ検索パス(-L)をクリックして、+をクリックし、検索パスをmysqlcientに追加します。私の場合、/ usr/lib64/mysqlでした。これは64ビットLinux OSと64ビットMySQLデータベースを使用しているためです。
それ以外の場合、2ビットLinux OSを使用している場合、/ usr/lib/mysqlで見つかることがあります。