I have an update statement that does not work properly and want to know how the final statement looks like. Is there a way to print out the statements generated by the Android SQLiteOpenHelper?
So far I managed to get a hold of the unpopulated statement by stepping through the stacktrace:
UPDATE banks SET fav=? WHERE code = ? AND name = ?
The syntax of the unpopulated statement is correct.
UPDATE banks SET fav=1 WHERE code = '12030000' AND name = 'XYZ Bank'– Philipp Jul 11 '11 at 8:14