
Database Access in NON MFC Application
What database are you using? I assume your doing Windows SDK calls for
your GUI.
You could talk directly to the database API without going through a
driver such as ODBC, Jet, or ADO. The feasability of this greatly
depends on the database.
You could also google for 3rd party libraries that help you out with
this sort of thing.
There is no way to "...access the MFC API's without using MFC."
Quote:
> Hello all
> I have been developing a Win32 Non MFC application that I
> now what to attach to a database to store and query such
> information as client details etc. Does anyone know how I
> should go about this. I can find very little information
> anywhere, and I am not sure whether I should use ADO, DAO
> or somehow access the MFC API's without using MFC. If
> anyone has any suggestions or knows where I can find a
> suitable tutorial / Example I would be very grateful. I
> have managed to build an application that uses #import
> and then an ADODB connection, but I am unsure how I can
> use this to query the database. I can add rows / columns
> information using Execute.... but what do I use to return
> records from a query?
> Please help.... Any information would be gratefully
> appreciated.
> Jamie