Wolfie7873
Technical User
So I want to use the command: SQLConfigDataSource. From what I gather this class is in odbccp32.dll so I tried this in the beginning of my console application:
#include "stdafx.h"
#using <mscorlib.dll>
#using <odbccp32.dll>
using namespace System;
using namespace System::IO;
using namespace System:ata;
I get this error at compile time:
fatal error C1192: #using failed on 'c:\windows\system32\odbccp32.dll'
I don't understand this error, what gives?
#include "stdafx.h"
#using <mscorlib.dll>
#using <odbccp32.dll>
using namespace System;
using namespace System::IO;
using namespace System:ata;
I get this error at compile time:
fatal error C1192: #using failed on 'c:\windows\system32\odbccp32.dll'
I don't understand this error, what gives?