What is the most simple and easy to implement method to manipulate Database under VC++6.0? (ODBC, DAO, ADO?)
And if I choose to use ADO, does it mean I have to study COM first?
Thanks!
Printable View
What is the most simple and easy to implement method to manipulate Database under VC++6.0? (ODBC, DAO, ADO?)
And if I choose to use ADO, does it mean I have to study COM first?
Thanks!
Personnaly I use ODBC.
Code to write is very simple and you just have to write your requests in SQL.
I have no idea of advantages/incovenients of other solutions
DD
I've used ADO without much knowledge on COM. But knowing COM will make things easier.
ADO is in general more flexible than ODBC. Also MFC 6.0 ODBC does not support Unicode. I suggest learning and using ADO (and also ADO.NET) since Microsoft is going this way.