How to load ini files and connect to Oracle in VisualStudio 2008

Asked 1 years ago, Updated 1 years ago, 496 views

Nice to meet you, as the title says
We are trying to create a function that reads information in the ini file, connects to DB, and deletes it.
I've looked into various things, but I've only used Nuget, so I asked you a question.
If you know, or
I would appreciate it if you could let me know if there is any missing information.
Thank you.I'm sorry I'm a beginner.

c++ visual-studio oracle

2023-02-21 02:15

1 Answers

I don't know what you're looking for, but if you want to answer a question.

Will you be using the API ODBC;Microsoft Open Database Connectivity?ODBC has a separate interface and driver.

  • Interface portion
    It was standardized on the operating system a long time ago and can be called anytime.
  • Driver portion
    • ODBC Driver for Oracle
      Because of the standard OS installation a long time ago, only the 32-bit version remains.The 64-bit version is not available.Also, I'm not sure if I can connect to the desired version of Oracle (it says Oracle 8 is limited).
    • Instant Client ODBC Software
      Drivers distributed by Oracle.
  • ODBC Driver for Oracle
    Because of the standard OS installation a long time ago, only the 32-bit version remains.The 64-bit version is not available.Also, I'm not sure if I can connect to the desired version of Oracle (it says Oracle 8 is limited).
  • Instant Client ODBC Software
    Drivers distributed by Oracle.

There is a C/C++ ODBC sample application by Microsoft.The code itself is connected to SQL Server, but as mentioned above, the interface part you are working on is the same, so it will be helpful if you select the appropriate connection destination.However, the project files are in .vcxproj and Visual Studio 2010 and later formats, so you may refer to .cpp/.h.

Well, if you want to limit yourself to Oracle, Oracle C and C++ Interfaces offers other connectivity options.


2023-02-21 05:46

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.