S
Scott Reynolds
Hello!
I developed a web application to display results from the database. Now I
need to add search function, to search, sort and filter data.
My question is, which way is better...
1) Store all related data in a single DataSet and use DataView to filter and
sort data
OR
2) Join related data to a single results set and filter data on the database
side, then store already filtered data in DataSet.
Database structure:
Table "Users" (parent) ~ 5000 records
Table "Orders" (child)
Table "Payments" (child)
I am using MS Access database.
All suggestions are welcome!
Scott
I developed a web application to display results from the database. Now I
need to add search function, to search, sort and filter data.
My question is, which way is better...
1) Store all related data in a single DataSet and use DataView to filter and
sort data
OR
2) Join related data to a single results set and filter data on the database
side, then store already filtered data in DataSet.
Database structure:
Table "Users" (parent) ~ 5000 records
Table "Orders" (child)
Table "Payments" (child)
I am using MS Access database.
All suggestions are welcome!
Scott