I am new to the iPhone and have a problem with SQLite...
I want to execute a query which contains multiple where
conditions like:
UPDATE tablename
SET field1 = ?,
field2=?
WHERE Itemid=?
AND field1=?
AND field2=?
Is this is the right way to do the update? If possible what would be the code to execute the query?