从 C++ 进行 SQL 查询
我已从我的项目连接到 MS Access 数据库。现在我想做一个查询,例如从第三列和第四列中取出数据。
如何使用 Visual Studio 2008 在 C++/CPP 中编写 SQL 查询?
I have connected to an MS Access database from my project. Now I want to make a query, for example to take out data from third and fourth column.
How can I write SQL query in C++/CPP, using visual studio 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 MFC、Qt 或 wxWidgets 等框架,您可能希望使用它们已经包含的数据库连接类。
如果您没有使用其中之一,您可能需要专门研究另一个库,例如 DTL 或 SOCI。
显然,您可以编写自己的代码来通过 OLE DB 或 ODBC 等方式与数据库通信,但它们都涉及大量样板文件,因此库可以提供很大帮助。
If you're using a framework like MFC, Qt, or wxWidgets, you probably want to use the database connection classes they already include.
If you're not using one of those, you probably want to look into another library specifically for the purpose, such as DTL or SOCI.
You can obviously write your own code to talk to the database via something like OLE DB or ODBC, but they both involve quite a lot of boiler-plate, so a library helps out a lot.