Unix/Linux, mysql, web,企业应用
发布时间:2013-03-24 13:29:48
废话不多说,直接上代码:#include <stdio.h>#include <mysql/mysql.h>#define HOST "192.168.56.2"#define DB "webdevtest"#define USER "webdev"#define PWD "webdev"#define PORT 3306int main(){&nbs.........【阅读全文】
发布时间:2013-03-24 12:17:40
今天周末,一大早就起床写了个简单的用C访问mysql的程序,当然是作为学习测试用的了。但编译过程中遭遇了找不到头文件的问题。my-acer ~/c $ gcc -o mysql_test mysql_test.c -lmysqlclientmysql_test.c:2:19: fatal error: mysql.h: No such file or directorycompilation terminated.........【阅读全文】