I don't think there is a way to take advantage of the MFC facilites to access the SQLite API in a more clearer way.
Due to the fact that the SQLite interface is C-oriented, it might be better to encapsulate the access with a wrapper C++ class and you might use normal arrays of chars and sprintf to fill the dynamic values inside this class (though you could go on with CStrings... if you find them clearer).
We, at work, have a class which encapsulates the access and allows us not to have to build any sql statement explicitly.
The example referred by nhaa123 deserves a +1 vote!
