Create SQL queries for SQLite with MFC primitives - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:44:42Z http://stackoverflow.com/feeds/question/886916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/886916/create-sql-queries-for-sqlite-with-mfc-primitives 0 Create SQL queries for SQLite with MFC primitives sharptooth 2009-05-20T08:55:11Z 2009-05-23T13:06:24Z <p>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 <code>CString</code> instances and a feeling that I'm doing something wrong.</p> <p>Is there a better way of doing this staying within primitives provided within SQLite and MFC?</p> http://stackoverflow.com/questions/886916/create-sql-queries-for-sqlite-with-mfc-primitives/896909#896909 1 Answer by nhaa123 for Create SQL queries for SQLite with MFC primitives nhaa123 2009-05-22T08:39:55Z 2009-05-23T13:06:24Z <p><a href="http://sqlite3pp.googlecode.com/svn/trunk/" rel="nofollow">This excellent piece of code</a> provides a nice C++ wrapper around SQLite3. It has a very nice binding methods, which saves a lot of unnecessary lines from your code (in this case, CStrings). Check it out; there's a lot of examples as well.</p> http://stackoverflow.com/questions/886916/create-sql-queries-for-sqlite-with-mfc-primitives/897190#897190 0 Answer by David Alfonso for Create SQL queries for SQLite with MFC primitives David Alfonso 2009-05-22T10:09:00Z 2009-05-22T19:09:57Z <p>I don't think there is a way to take advantage of the MFC facilites to access the SQLite API in a clearer way.</p> <p>Due to the fact that the SQLite interface is <strong>C-oriented</strong>, it might be better to <strong>encapsulate the access</strong> with a wrapper C++ class and you might use <strong>normal arrays of chars</strong> and <strong>sprintf</strong> to fill the dynamic values inside this class (though you could go on with CStrings... if you find them clearer).</p> <p>We, at work, have a class which encapsulates the access and allows us not to have to build any sql statement explicitly.</p> <p>The example referred by nhaa123 deserves a +1 vote!</p>