I'm in the process of migrating a delphi application to C#.NET but when I add a dataset to my project and I select all the tables I will need to use, my computer slows down significantly and I end up with a out of memory error. So what are the best practices when your application is going to be using a large amount of tables and Stored Procedures.
Thanks,
Donnelly
Loading
jingePosted Oct 29, 2009, 9:46 PM
If you load all the table and records at the beggining into memory, it, of course, will cost lots of memory. The correct way to handle this situation is load data on demand.
Donnelly JamesPosted Nov 6, 2009, 1:58 PM
Donnelly JamesPosted Nov 2, 2009, 9:15 AM
jingePosted Oct 31, 2009, 4:12 AM
Donnelly JamesPosted Oct 30, 2009, 2:54 PM