CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2003
    Posts
    19

    What is the most simple and easy to implement method to manipulate Database under VC?

    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!

  2. #2
    Join Date
    Mar 2002
    Posts
    32
    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

  3. #3
    Join Date
    Apr 2003
    Location
    Athens, Greece
    Posts
    1,094
    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.
    Extreme situations require extreme measures

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured