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);

contentresolver.update()

about where parameter:

a filter apply rows before updating, formatted sql clause (excluding itself).


Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -