Small business app.

wyrd

Well-known member
Joined
Aug 23, 2002
Messages
1,408
Location
California
Whats a good number of items a program should be able to handle (items within a database that is) in a speedy, efficient manner.. 100 thousand, 500 thousand, 1 million, 5 million, a billion?

This would be for a small business application.

Oh, and paging.. whats a good way to handle paging (both in terms of program design and also via SQL statements)? I ran into a small program while testing my program and handling 100,000 items in a ListView seems to be a bit much. LOL :D Yes I know Im insane, I just havent added paging yet. Plus, I was curious as to how far I could go with the ListView before it started making my program slugish.

Also I have a question on some table design issues that Im boggling over. Ill post tomorrow when I get time, so please recheck this thread then. :) In the mean time Im curious about the above questions.
 
~3000 items in the listview makes my program sluggish and i almost fainted. it took ~1min to load all of them.. datagrid took a few secs with the same data.

perhaps i was being shallow in not knowing that datagrid is better than listview.. just wanted to try things out.

-ashrobo
 
Yours got sluggish after displaying 3,000? Odd.

EDIT:
I just did a minor test, you are right that the DataGrid holds larger numbers easier. Interesting. :)
 
Last edited by a moderator:
Back
Top