Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 C 代码连接到 oracle 数据库。是否可以在代码中使用 OCCI?如果是,请帮我举一些例子,请注意它必须是 C 代码。
如果不是,使用 C 连接到数据库的其他选项是什么?
OCCI 是“Oracle C++ 调用接口”的缩写,面向 C++ 应用程序。如果您的应用程序将完全使用 C 语言,那么您应该使用 OCI(Oracle 调用接口),因为这是 Oracle 为用 C 语言编写的应用程序的调用接口。
请参阅程序员指南以获取帮助和示例。