I have a table linked to a backend database that is the recordsource of a subform. The problem is latency issue because of multiple users. I want to use ADO to update the record in the subform instead of linking it. I just want to get your opinion which is the best option... I have think of two at the moment. Since we can't use ADO as recordsource of the subform,
1. my plan is when the user opens the file a table will be created and will be updated by the recordset with all data specific to him which will be the recordsource of the subform. SO each user will equal to one table but that table will be deleted when he closes the database
2. I will have one single table that will be udpated with the users data and will just use a query as a recordsource of the subform. the data will be deleted when the user closes the file.
Additional option is very much appreciated
1. my plan is when the user opens the file a table will be created and will be updated by the recordset with all data specific to him which will be the recordsource of the subform. SO each user will equal to one table but that table will be deleted when he closes the database
2. I will have one single table that will be udpated with the users data and will just use a query as a recordsource of the subform. the data will be deleted when the user closes the file.
Additional option is very much appreciated