
Originally Posted by
boblarson
Relationships will be defined in the backend. The tables go in the backend the queries should be in the frontend.
And you wrote:
well, if Access were a server then yes that would be the case. But it isn't. It is a file based system and the frontend is going to be processing everything on the user's machine, regardless of whether it is split or not or if the queries are in the backend or on the frontend. If they are in the backend then the objects still need to be transferred over the network for the frontend to run. So, no - having them in the backend is not preferred.
The relationships can ONLY be set in the backend. That will maintain referential integrity of your data. Setting them in the frontend is pointless really.