forked from javafxports/openjdk-jfx
-
Notifications
You must be signed in to change notification settings - Fork 0
SQLite Conseils
ScientificWare edited this page Dec 3, 2018
·
5 revisions
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"});
MDN https://developer.mozilla.org/fr/
NetBeans Apache https://netbeans.apache.org/
OpenJFX 14 community website https://openjfx.io/