I want to connect and use sql database within my C++ application . My application need to store some data (can be stored in form of tables) which will be growing continuously and need to be shared between different processes - so I need a database. I selected sql because it is recommendable for beginners and I need multiple writer so no SQLite.
On searching I found following options (These options may include ORMS, APIs , and Drivers and may be some of these options shouldn't be even included - i.e I was totally wrong understanding that option; then please correct me):
- SQLAPI++ - Source(ALSO OFFICIAL SITE)
- MySQL Connector/C++ (Some advantages are also given there.) - Source
- MySQL++
- CppDB
- SOCI
- Libodbc++ (Runs on top of ODBC)
- Database Template Library - Source
- Oracle Template Library
- Using sql.h with ODBC:
Choices for ODBC:
a. MYSQL Connector/ODBC
b. EasySoft ODBC
c. Some Others
Some SO's threads which help me to find these choices: T1,T2, T3, T4.
My Questions:
- Which option to use and when? Advantages/Disadvantages of these options? (May be based on
performance,learning curve,compatibility,present support.) Is there any benchmark or suggestion for selecting among these options. (I really don't know about these options, so may be some of these options required to group together to make them work i.e may be some of the options are inter-dependent.) - What are the required set of tools for these options.
- If using any
ODBCdependent library, then whichODBCto use. (There are many ODBCs mentioned in the link 'Some Others' above.) - Any source for learning them. (For some of the options I have already mentioned a source.)
- Is there anything else that I have missed, entirely?
- What if my application is in
C? (This is because I also need to develop an application in C which usessql)
I know I have asked too much. Please give suggestion for any particular part.