How to open a database without MFC ?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
How can I open a database and execute SQL requests without MFC classes (CDaoDatabase, CDaoRecordset...)? in other words: how people used to work with databases before the existance of MFC (the old times)? Thank you in advance.:rose:
Maybe you should use the ODBC API directly from your app. There should be plenty of information on MSDN.
-
How can I open a database and execute SQL requests without MFC classes (CDaoDatabase, CDaoRecordset...)? in other words: how people used to work with databases before the existance of MFC (the old times)? Thank you in advance.:rose:
Use ADO. I am a MFC programmer and have not used MFC database classes in years. http://www.codeproject.com/database/caaadoclass1.asp[^] John