-
Want To Know???/
Hi Everybody...
I want to know about the database connectivity in VC ++ so anybody know about the tutorials on which i can get idea about how to connect the vc application to database .(Access , SQL )
plz. send me related URL so i can get mateial about vc ++
Thanx.
sandin
-
There are 4 ways without MFC.
a) ODBC. Can access every kind of database, but only with a limited funciton set.
b) OLE DB. Very fast and powerful, but only for some databases. Hard to use.
c) ADO. Easy to use wrapper of OLE DB.
These 3 are documented in the SDK.
d) DAO. Fast and powerful, yet easy-to-use method to connect to MS Jet databases (mdb). Poorly documented: No docs in the SDK, DAO docs are only for VB.
MFC provides wrapper classes for ODBC and DAO.