G
Guest
I am trying to convert an MDB FE with a connection to an MDB BE (MDB/MDB) to
be an MDB FE with a SQL Server BE (MDB/SQL).
I have many instances of forms that each have a subform. The Record source
of the Sub Form is an UNfiltered query or a table. The records that are
displayed are automatically filtered by a Master/Child link scenario, and the
result is a very quick display of data in the MDB/MDB solution
As I convert the BE to SQL Server, I want, of course, to limit the amount of
data retrieved to only that necessary for each display, so can you tell me
what happens in the scenario described above. Are all the records returned
from the server, with only those filtered by the Master Child link shown in
the display, or is it only the records that meet the Master/Child link filter
that get retrieved?
In other words, where is the filter applied? At the BE or at the FE?
If the filter is applied at the FE, what steps do I need to take, with the
least amount of changes, or rather, so that the solution is applied in both
cases?
I will need to eventually do a replication/synchronization of the SQL BE so
that selected users can work in an environment where they do not have a
viable connection path to the server while working. I do not want to make an
adjustment to solve one problem and end up creating another, and I certainly
do not want to have to maintain two sets of code. I know I can use a switch
based upon type of connection and have both types of code/forms in my FE, but
prefer to use this method only as a last resort.
be an MDB FE with a SQL Server BE (MDB/SQL).
I have many instances of forms that each have a subform. The Record source
of the Sub Form is an UNfiltered query or a table. The records that are
displayed are automatically filtered by a Master/Child link scenario, and the
result is a very quick display of data in the MDB/MDB solution
As I convert the BE to SQL Server, I want, of course, to limit the amount of
data retrieved to only that necessary for each display, so can you tell me
what happens in the scenario described above. Are all the records returned
from the server, with only those filtered by the Master Child link shown in
the display, or is it only the records that meet the Master/Child link filter
that get retrieved?
In other words, where is the filter applied? At the BE or at the FE?
If the filter is applied at the FE, what steps do I need to take, with the
least amount of changes, or rather, so that the solution is applied in both
cases?
I will need to eventually do a replication/synchronization of the SQL BE so
that selected users can work in an environment where they do not have a
viable connection path to the server while working. I do not want to make an
adjustment to solve one problem and end up creating another, and I certainly
do not want to have to maintain two sets of code. I know I can use a switch
based upon type of connection and have both types of code/forms in my FE, but
prefer to use this method only as a last resort.