Hi,
I have to design a system where FE users will only read data from a backend table through a form. They will not be updating/insering new data.
All data in the backend table needs to be deleted and populated with new data thrice a day.
What would be the best way to achive this?
There shouldn't be any data outage when the BE tabel is being loaded with new data.
I made a demo FE and a BE and tried to use the form to view data while running updating the backend (running two queries 1. Delete all data from table 2. Append new data to table) , but the form shows as #deleted till the update is done. Is there any way to avoid this?
I thought I will have and extra field and flag the old data, then insert new data and then delete all flagged data. Is this the right way to go ahead?
Many Thanks.
I have to design a system where FE users will only read data from a backend table through a form. They will not be updating/insering new data.
All data in the backend table needs to be deleted and populated with new data thrice a day.
What would be the best way to achive this?
There shouldn't be any data outage when the BE tabel is being loaded with new data.
I made a demo FE and a BE and tried to use the form to view data while running updating the backend (running two queries 1. Delete all data from table 2. Append new data to table) , but the form shows as #deleted till the update is done. Is there any way to avoid this?
I thought I will have and extra field and flag the old data, then insert new data and then delete all flagged data. Is this the right way to go ahead?
Many Thanks.