I have a C++ driver I\'m trying to compile, and it has this line in the code:
#import \"msado15.dll\" no_namespace rename(\"EOF\", \"EndOfFile\")
For VC++2010(VS2010): the compiler is not able to see the msado15.dll
which is located at C:\Program Files\Common Files\System\ado
Go to Project | Properties | Configuration Properties | VC++ Directories and add the following at executable directories
$(CommonProgramFiles)\System\ado;
You should be fine