Skip to content
ScientificWare edited this page Dec 3, 2018 · 5 revisions

Ce qui suit est un tutoriel personnel pour l'utilisation de SQLite sous Android ou Java.

sqlite_logo

Site WEB SQLite.org

The String[] whereArgs contains the arguments to be appended to the whereClause.

For example, you want to make a delete query:

delete from myTable where name = "ABCD" and id = "234"

then the query should be:

delete("myTable", "name = ? AND id = ?" , new String[] {"ABCD", "234"});

Clone this wiki locally