CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    16Bit Application & 32-Bit Db

    I want to know if I can access a 32-Bit Database (Access 97)
    using a 16-Bit Application (VC++ 1.52).

    Thanks a lot in advance,
    Nimesh.


  2. #2
    Join Date
    Jun 1999
    Posts
    14

    Re: 16Bit Application & 32-Bit Db

    Well 16 to 32bit interoperability can be tricky. But I had similar problems a while back. The way I got around it was to write a COM executable. This was the only way I could see, how to interoperate 16 and 32bit systems. The COM executable does all the 16/32 bit marshaling for you. Thus you will have to write a middle tier executable to handle all your database calls and pass all the information back and forth from the COM executable.


  3. #3
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    Re: 16Bit Application & 32-Bit Db

    In the ODBC section of the Platform SDK, see the "Compatibility Matrix" topic. You might also want to look in the "Types of Drivers" topic, but don't ask me what it means because I am not sure.


    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

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