How can I print the values being sent to the sqlite database while using Core Data SQL Debug?
Using the "-com.apple.CoreData.SQLDebug 1" in my "Arguments Passed on Launch" debug options prints the SQL structure just fine
(you can check see how to use this here: XCode4 and Core Data: How to enable SQL Debugging)
But the problem is that the NSLog printed is something like UPDATE ZTABLE SET ZCOLUMN = ? WHERE ZID = ?
and it does not help at all if you are trying to see what is the full SQL statement and/or data being sent to the database.