Hi,
I am trying to insert list of records from MYSQL database to SQLite.
I did it with this code:
Now i want to check every record if exist in my SQlite database. If do not exist, then insert, if exist then return.
How can I do this ?
Thanks.
I am trying to insert list of records from MYSQL database to SQLite.
I did it with this code:
B4X:
Case: "updateSQLite"
Dim ListOfProducts As List
ListOfProducts = parser.NextArray 'returns a list with maps
DBUtils.InsertMaps(SQLite,"products",ListOfProducts)
End Select
Now i want to check every record if exist in my SQlite database. If do not exist, then insert, if exist then return.
How can I do this ?
Thanks.