How to make #include <mysql.h> work?
Posted
by symfony
on Stack Overflow
See other posts from Stack Overflow
or by symfony
Published on 2010-03-25T14:13:09Z
Indexed on
2010/03/25
14:23 UTC
Read the original article
Hit count: 272
I'm building an open source project from source,
and it need to include <mysql.h>
:
#if USE_MYSQL
#include <mysql.h>
#endif
and the compilor reports:
mysql.h no such file or directory
MySQL is yet another greater open source project,what do I need to do to make it work?
© Stack Overflow or respective owner