I have an application that is using the Visual Studio 2008 environment
but the project is a 'C' project (everything is using C conventions
and compile options). We are making sure that there is no C++ in this
application for coding reasons I'm not going to go into. Just note
that we have to do it this way.
Here's my issue, I need to have part of the code get data from a Jet
database and connect/use a SQL 2005 database. If this were C++ I could
use #import and recordbinding (love record binding) and be done with
it. How can I do the same operations (perferably with some
recordbinding) in C? Is there a header or something easy to use or do
I need to traverse all of the notions of COM by hand. Please note that
ADO's record binding is one of the key features that I would like to
duplicate in this C code.
Thanks for all the help or pointers (pun) and I wish you a very good
day. I am finding this more challanging the deeper I look.