We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2796f1 commit a89273eCopy full SHA for a89273e
README.md
@@ -131,6 +131,14 @@ Make things easy when you need to write a sql statment for Android SQLite.
131
.add("CITY", "New York")
132
.add("STATE", "New Jersey");
133
134
+## Update
135
+
136
+ ContentValues cv = SqlParser.content().add("NAME", "John")
137
+ .add("CITY", "New York")
138
+ .add("STATE", "New Jersey").get();
139
140
+ yourDb.update(tableName, cv, rowId + " = ?", new String[]{String.valueOf(yourId)});
141
142
143
# License
-See the [LICENSE](/LICENSE.txt). file for license rights and limitations (MIT).
144
+See the [LICENSE](/LICENSE.txt). file for license rights and limitations (MIT).
0 commit comments