Performance question

  • Thread starter Thread starter Kevin H
  • Start date Start date
K

Kevin H

Is there a performance hit for using 1 dataset with many
data tables versus many datasets with one table each? I
have coded an app which adds a data table for each data
view I touch. A coworker wrote his code to create a new
dataset for each view he touches, with one table per
dataset. My app hits about 75 views. Is there an optimal
balance, or does it matter?

TIA

Kevin
 
Hi Kevin,

The only performance hit I see is that you'll have to create n-dataset
instances while coworker creates only one.
 
Back
Top