How to log SQLite queries on iPhone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:29:05Z http://stackoverflow.com/feeds/question/424042 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/424042/how-to-log-sqlite-queries-on-iphone 2 How to log SQLite queries on iPhone ger 2009-01-08T12:09:32Z 2009-01-08T19:58:31Z <p>Hi,</p> <p>I'm doing an iPhone application, and I'm using SQLite.</p> <p>The problem is that I had some issues with the query (I did bad binding) so, this is my question:</p> <p>How can I log in my iPhone application the effective SQL query/statement with the bindings that SQLite receives?</p> <p>Thanks.</p> http://stackoverflow.com/questions/424042/how-to-log-sqlite-queries-on-iphone/424987#424987 0 Answer by Marco for How to log SQLite queries on iPhone Marco 2009-01-08T16:43:32Z 2009-01-08T16:43:32Z <p>I don't think this is possible.</p> <p>As far as I know, prepared statements aren't built into "full SQL" strings before they get to the database engine. The parameter values aren't escaped, quoted, and inserted into the SQL string only to be parsed and decoded in the next step: the values bypass the query parsing entirely and go straight into the data engine.</p> http://stackoverflow.com/questions/424042/how-to-log-sqlite-queries-on-iphone/425647#425647 1 Answer by Stephan Burlot for How to log SQLite queries on iPhone Stephan Burlot 2009-01-08T19:58:31Z 2009-01-08T19:58:31Z <p>Easiest way would be to create a wrapper to your call to sql functions and add log functionality to it.</p> <p>I'm not sure the file written by the PRAGMA journal_mode is readable, but I couldnt use this pragma.</p> <p>You can also have a look at an excellent existing wrapper from Gus Mueller: <a href="http://code.google.com/p/flycode/source/browse/trunk/fmdb" rel="nofollow">fmdb</a></p>