windows下访问MySQL出错

发布于 2021-11-11 17:56:06 字数 417 浏览 841 评论 3

环境:win7/Code::Blocks 10.05

准备工作:在调试之前我将MySQL Server 5.6include文件夹的内容全部拷贝到CodeBlocks10.05MinGWinclude下了。

代码:

#include <iostream>
#include <mysql.h>

using namespace std;
 
int main()
{
    cout << "Hello world!" << endl;
    return 0;
}

编译报错:

error: 'SOCKET' does not name a type

求解

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怎言笑 2021-11-14 19:17:42

国外的处理答复,把winsock.h include加载在mysql.h之前来修正这个错误。。。要学会看国外的资料啊

You will have to include winsock.h before including mysql.h to fix this error. See the below link for more details:

夜无邪 2021-11-12 11:41:32

国外的处理答复,把winsock.h include加载在mysql.h之前来修正这个错误。。。要学会看国外的资料啊

You will have to include winsock.h before including mysql.h to fix this error. See the below link for more details:

醉生梦死 2021-11-11 19:15:23

国外的处理答复,把winsock.h include加载在mysql.h之前来修正这个错误。。。要学会看国外的资料啊

You will have to include winsock.h before including mysql.h to fix this error. See the below link for more details:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文