Quote:
|
quote:Am I right to say that the entire myView will travel to the Access ADP and Access will process the View with the WHERE Clause?
|
Nope. In a regular .mdb, the Jet Engine provides both local storage and a local query processor. With ADPs, there is no Jet engine, so there is neither local storage, nor local query processing, none, nada.
The View is processed entirely by SQL Server, and just the result set (a sort of "virtual table", a view of a subset of a table) is returned over your OLE DB connection to the ADO Cursor Engine, which creates and manages a client-side recordset that your form uses.
HTH,
Bob