I have a speed/efficiency type question that any feedback on would be much appreciated.
The question refers to the psuedo-client/server architecture where both frontend and backend are Access .mdb's, one on the client machine holding all non-table objects and one on a remote server holding only data tables.
1. If I open up a form (one intended to display information relating to a single record) with it's Record Source set to a query of the sort "SELECT * FROM TableName" and use code similar to
Will the entire table still be "downloaded" from the server before the WhereClause is applied to isolate the single record?
The question refers to the psuedo-client/server architecture where both frontend and backend are Access .mdb's, one on the client machine holding all non-table objects and one on a remote server holding only data tables.
1. If I open up a form (one intended to display information relating to a single record) with it's Record Source set to a query of the sort "SELECT * FROM TableName" and use code similar to
Code:
WhereClause = "TableNameId=" & ThisRecordId
DoCmd.OpenForm "Form", acNormal, , WhereClause, acFormEdit, acDialog
Will the entire table still be "downloaded" from the server before the WhereClause is applied to isolate the single record?