I get this exception:
FATAL EXCEPTION: main android.database.sqlite.SQLiteException: near ".": syntax error: , while compiling: UPDATE items SET I.red='1' FROM items I, feeds F WHERE I.feedLink=F.link AND F.category='Genel'
from this statement:
UPDATE items
SET I.red='1'
FROM items I, feeds F
WHERE I.feedLink=F.link AND F.category='Genel'
using SQLite in Android. How can I solve this?
Note: items and feeds are names of my datebase tables.
SQL UPDATE syntax:
To hone in on what I think you’re trying to accomplish: