SQLite Beginner Question. Android Content resolver.update(...) insert(...) -
do explicitly write where clause insert/updates?
like so:
cr.update(uri, values, "where _id="+id, null);
about where
parameter:
a filter apply rows before updating, formatted sql clause (excluding itself).
Comments
Post a Comment