I’m in the process of creating a Password Filter as described here. I can manage to write the VC++ code. My issue is that i need to update SQL Server database from that code. I dont have any past experience in VC++ Win32 project. My assumptions are
- Linking an external dll (compiled
C#.net code) which will take care of
the database update -
Hitting a windows service which will
take care of the updateAny insights?
Why are those your only two options?
You can use ADO from directly within C++ by #import(ing) msado15.dll, which exposes lots of useful objects and methods from ADO. See: Visual C++ ADO Programming
There are other options here: Data Access Programming in Visual C++