• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Accessing database using MFC

Argo

Lifer
I have 2 databases Oracle and MySQL, running on different hosts. I need to write an MFC program that will connect to either one of those databases and send a bunch of rather complex SQL queries. Now, as both ODBC and DAO oversimplify things a lot by providing recordsets and stuff like that. In other words, they both are optimized towards simple search queries and traversal. I, on the other hand, need something as simple as PHP, that will work from within MFC program. Does anybody know how I can accomplish that?
 
Write them as dB functions and call them using ODBC, takes the heat of the dB engine as the functions will be optomised and the calls eaiser.

And it can't be done with Microsoft doc's any of this.

Are the dB's designed well ?
 
Back
Top