Skip to content

Commit 59c233e

Browse files
committed
update insert
1 parent 37cbc00 commit 59c233e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

simplesql/src/main/java/com/simplesql/simplesql/config/SimpleSQL.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,15 +467,15 @@ public String create(Object obj, SQLiteDatabase db) {
467467
* Method INSERT
468468
*/
469469
public class Insert {
470-
private Object object;
470+
private Object obj;
471471
private ContentValues values;
472472

473473
public Insert(Object obj) {
474-
this.object = obj;
474+
this.obj = obj;
475475
values = new ContentValues();
476476
}
477477

478-
public boolean execute(Object obj) {
478+
public boolean execute() {
479479

480480
try {
481481
SQLiteDatabase write = helperBD.getReadableDatabase();

0 commit comments

Comments
 (0)