Results 1 to 3 of 3

Thread: [Resolved]DataReader VS Datset

  1. #1

    Thread Starter
    Hyperactive Member naruponk's Avatar
    Join Date
    Feb 2004
    Location
    Some where in the world
    Posts
    423

    [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.

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  3. #3

    Thread Starter
    Hyperactive Member naruponk's Avatar
    Join Date
    Feb 2004
    Location
    Some where in the world
    Posts
    423

    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
  •  



Click Here to Expand Forum to Full Width