有没有办法使用简单的 c++ 连接到 oracle db不是 vc++或过程
我正在努力使用 GNU C++ 连接到 oracle db。是否需要安装任何库才能使用简单的 c++ 连接到 oracle db(哎呀)。
请也给我提供一些示例代码,这对我来说是新的。感谢您的帮助。
我之前问过类似的问题,但忘了提及我没有使用 vc++ 和 proc。
I am struggling to connect to oracle db using GNU C++.Is there any library which I have to install to connect to oracle db using simple c++ (oops).
Please provide me some sample code as well, this is new for me. Appreciate your help.
I asked a similar question before but forgot to mention that I am not using vc++ and proc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 SOCI。它支持多种数据库后端,包括 Oracle、MySQL、Postgre、ODBC 等。如果需要,使用此库可以让您更轻松地将应用程序迁移到不同的数据库。
此处有一个代码示例。文档中还包含了更多内容。
Check out SOCI. It supports several database backends, including Oracle, MySQL, Postgre, ODBC, etc. Using this library would make it easier for you to migrate your application to a different DB, if necessary.
There's a code sample here. And several more peppered in the documentation.
您需要来自 Oracle 的 Oracle C++ 库 (OCCI)。您可以在这里找到它们:
http://www.oracle.com/technetwork/database /features/instant-client/index-097480.html
Google“Oracle OCCI 教程”,您应该可以找到您需要的几乎所有内容。
You would need the oracle C++ libraries (OCCI) from oracle. You can find them here:
http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
Google "Oracle OCCI tutorial" and you should find pretty much everything you need.