B4J Question TableView and SqlLite put issue.

giga

Well-Known Member
Licensed User
Longtime User
I am using TableView with SqlLite and able to see the database and fields. But when I try to modify a field and use wherefields.put nothing happens.
I don't get any error the field does not change. However if I go into the database through SQLlite expert and change it there it will show in the TableView.
B4X:
Dim WhereFields AsMap
 WhereFields.Initialize
 WhereFields.Put("employ_id", "1234")
 DBUtils.UpdateRecord(sql1, "Office", "staff", 100, WhereFields)

Thanks everyone for their help.
 
Top