I'm using SQLite to store my program's state. sqlite3_exec() accepts the SQL query as a string. So I have a lot of code that builds such queries by concatenating numerous CString
instances and a feeling that I'm doing something wrong.
Is there a better way of doing this staying within primitives provided within SQLite and MFC?