如何构建 libmySQL?
我的目标是将 libmySQL 集成到我的可执行文件中,而不是使用 libmySQL.dll。
我使用 VC++ 2008 @ Windows Vista。
我已经下载了“mysql-connector-c-noinstall-6.0.2-win32-vs2005.zip” http://dev.mysql.com/downloads/connector/c/
仅包含带有声明的“.h”文件。实现代码(“.c”文件)在哪里?
如前所述,我希望能够操作代码,将其构建为静态库(“.lib”)并最终将其集成到我的 exe 中。
我该怎么做?我是不是看错地方了?是否可用?如果/一旦我得到它,它是否需要任何特殊的编译?步骤是什么?
I aim to integrate libmySQL into my executable instead of using libmySQL.dll.
I use VC++ 2008 @ Windows Vista.
I've downloaded "mysql-connector-c-noinstall-6.0.2-win32-vs2005.zip" from
http://dev.mysql.com/downloads/connector/c/
It contains only ".h" files with declarations. Where is the implementation code (".c" files)?
As said, I wish to be able to manipulate the code, build it as a static library (".lib") and finally integrate it into my exe.
How do I do that? Am I looking at the wrong place? Is it available at all? And if/once I do get it, does it require any special compilation? What are the steps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该在里面找到一个.lib,.h.lib和.dll足以将它链接到你的应用程序
ora 选择“源代码”作为平台
you should find a .lib inside, .h .lib and .dll are enough to link it to your app
ora select 'source code' as platform instead