Good Morning to you,
as I understood the database itself and the Resultset are two independent Objects. INSERT/UPDATE DELETE will change the Database Data but the Resultset Data is not synchronized and is not effected by those actions.
To solve this I save the SELECT statement and after doing one of this operation I reloaded the Resultset to make shure that it contains the newly Database changes. In my opinion this is not the best solution.
My question:
Is it possible and if yes how to insert, update or delete a row of the Resultset by code? B4A codesnipped would be fine. Thankyou.
Thank you for quick response. As I wrote that is exactly what I do. What I do not know if the Resultset is working simmilar to a B4XTable with loading Data by Paging. I did not try it yet but it seems to that loading big Data from the Database (let's say 1000 Records) will use some waiting time. Do you have any experiance?
Good Morning to you,
as I understood the database itself and the Resultset are two independent Objects. INSERT/UPDATE DELETE will change the Database Data but the Resultset Data is not synchronized and is not effected by those actions.
To solve this I save the SELECT statement and after doing one of this operation I reloaded the Resultset to make shure that it contains the newly Database changes. In my opinion this is not the best solution.
My question:
Is it possible and if yes how to insert, update or delete a row of the Resultset by code? B4A codesnipped would be fine. Thankyou.