Ansi c 中的 Mysql 连接
我在Ansi C,windows平台上工作。我想将 mysql 数据库附加到我的 c 程序中。请指导我如何使其成为可能。
I am working in Ansi C, windows platform. I want to attach mysql database to my c program. Kindly guide me how I can make it possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里是一个工作示例,建立连接并执行查询。
Here is a working example which sets up a connection and performs a query.
ANSI (ISO) C 不支持网络,因此根据定义,您不能在 ANSI C 中进行 MySQL 连接。您至少必须迁移到 POSIX。所以,答案是“不可能”。
ANSI (ISO) C doesn't do networking, so by definition you can't do MySQL connections in ANSI C. You will have to move to POSIX at least. So, the answer is, "It is impossible."