|
-
Mar 8th, 2005, 12:25 AM
#1
Thread Starter
Hyperactive Member
[Resolved]DataReader VS Datset
Hello all,
I'm new for ASP.NET and I have a question about DataReader that
DataReader or Datset is better to work in case of read only
How to retrive next record of DataReader (like .MobeNext of ADO)?
Is DataReader able to work offline?
thanks for all ideas
Last edited by naruponk; Mar 9th, 2005 at 12:04 AM.
-
Mar 8th, 2005, 04:11 AM
#2
Re: DataReader VS Datset
If I only needed to read from it once, I'd use a datareader, else a dataset.
Datareaders are forward only, so you don't use a MoveNext() method. You just use the .Read() method.
-
Mar 9th, 2005, 12:03 AM
#3
Thread Starter
Hyperactive Member
Re: DataReader VS Datset
Thanks for idea
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|