Can someone help me?
I added a field named"veld" in a sqlite database with ExecNonQuery . I want to fill the field with "something". The new field howe ever is filled with NULL. How can I find this field with wherefields when it is not filled and is NULL?
B4X:
If TableColumnExists(DBTableName3, "veld") =False Then
SQL1.ExecNonQuery("ALTER TABLE programma ADD veld TEXT")
End If
Dim WhereFields As Map
WhereFields.Initialize
WhereFields.Put("veld", Null)
DBUtils.UpdateRecord(Main.SQL1, Main.DBTableName3, "veld","something", WhereFields)
I added a field named"veld" in a sqlite database with ExecNonQuery . I want to fill the field with "something". The new field howe ever is filled with NULL. How can I find this field with wherefields when it is not filled and is NULL?