从 C++ 进行 SQL 查询

发布于 2024-10-31 03:34:14 字数 112 浏览 0 评论 0原文

我已从我的项目连接到 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 技术交流群。

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

发布评论

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

评论(1

鸵鸟症 2024-11-07 03:34:20

如果您使用的是 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.

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