Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I working with a big database what is the best way in performance -connected mode or disconnected mode- should I use?

share|improve this question
Duplicate of stackoverflow.com/questions/1083193/…. do check duplicates for posting. – Ravi Oct 10 '11 at 4:01

closed as not a real question by Mitch Wheat, Icarus, Eranga, Joel Coehoorn, Graviton Oct 10 '11 at 4:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

quoted from the post specified above: What's better: DataSet or DataReader?

It depends on your needs. One of the most important differences is that a DataReader will retain an open connection to your database until you're done with it while a DataSet will be an in-memory object. If you bind a control to a DataReader then it's still open. In addition, a DataReader is a forward only approach to reading data that can't be manipulated. With a DataSet you can move back and forth and manipulate the data as you see fit.

Hope this helps

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.