美文网首页
mysql编译出错,缺少mysql.h

mysql编译出错,缺少mysql.h

作者: 路西_ | 来源:发表于2019-05-30 14:44 被阅读0次

    ubuntu系统mysql.h no such file or directory

      在Ubuntu系统中,你已经安装了mysql,即你使用sudo apt-get install mysql-server mysql-client然而使用C语言访问mysql数据库时,却发现出现了如下错误:

    fatal error: mysql.h: No such file or directory

    出现这个错误是因为系统没有安装mysql安装包 sudo apt-get install libmysql++-dev即可 编译时需要加连接-lmysqlclient.

    编译源程序的时候,如下命令:

    gcc -I/usr/include/mysql *.c -L/usr/lib/mysql -lmysqlclient -o *

    *号代表你说编译源程序的名字。

    相关文章

      网友评论

          本文标题:mysql编译出错,缺少mysql.h

          本文链接:https://www.haomeiwen.com/subject/tsqvtctx.html