
How to access a Access db through vc++ from a console application
Quote:
>Ok I've found numerous help files about DAO etc using appwizard, but I
>just want to create a simple dos program to read an access database,
>preferably in C rather than C++ any help would be much appreciated.
Well for straight C, you're pretty much limited to using the raw COM
interfaces. DAO isn't an API, it's a COM object model. The easiest way would
be to use AppWizard to create a console project with
MFC support, and then
use either MFC-DAO or dbDAO classes.
Jeff