Wireless Access

bob fitz

AWF VIP
Local time
Today, 02:18
Joined
May 23, 2011
Messages
4,815
How well would an Access frontend work with an SQL Express 2019 backend if the linking had to be done wirelessly?

I've developed many split apps but I've never had to use anything other than Access for both ends.
SQL Express would be a new adventure :eek:. Should it be fairly straightforward?

Any advice, tips, ideas, or comments would be very much appreciated.
 
makes no real difference, the principles are the same, Using express means if the wireless fails for some reason unlike access, express will not be left in an uncertain condition so significantly less risk of BE corruption.

I would investigate using passthrough queries and stored procedures for data processing to keep data processing on the backend which will be more efficient and opens up using TSQL which is a richer language than ACE sql.

And the usual rules apply to minimise network traffic (forms based on one or a few records, not whole tables etc). Main impact here is subforms - use criteria, not filters (which is what the linkchild/master fields do although you can still use them to autopopulate the FK). Also if certain recordsets such as for combos/listboxes don't change, consider opening and storing in memory when the app is opened, then just assign to the recordset when required.

You will have higher maintenance costs - indexes need to be rebuilt on a regular basis if there are frequent deletes which is more work than the ACE compact/repair action - you'll need to write your own code to rebuild the indexes on a table by table basis for those tables that are affected.
 

Users who are viewing this thread

Back
Top Bottom