what's the point of using a dataset in ASP.net?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: what's the point of using a dataset in ASP.net?

    Ofcourse.. if you are using the data as read only. But if you have to go
    back and froth between records then you can't do that with DataReader.

    --
    Naveen K Kohli
    [url]http://www.netomatix.com[/url]
    "neil m" <nospam.macguigan@hotmail.com> wrote in message
    news:6x2La.308229$ro6.7513889@news2.calgary.shaw.c a...
    > what's the point of using a dataset in ASP.net?
    >
    > why not just use datareader?
    >
    > thx
    >
    > nm
    >
    >

    Naveen K Kohli Guest

  2. Similar Questions and Discussions

    1. the angle from point A to point B (where the mouse is)
      i'm trying to figure out the angle between a point in my sceane and the point at which the mouse has been clicked. i've been looking at 3dD world...
    2. Dataset.length(), dataset.hasnext() not working.. Why?
      I have a dataset that has 3 items, yet when I test for it, it is "undefined". Any ideas why this property would not be available? Thanks Geoff
    3. dataset.Databind error when dataset XML contains attributes...
      I've come accross an interesting problem populating an asp.net datagrid. I am trying to bind XML data to a datagrid as I've done in countless other...
    4. Add Point tool won't add point
      I'm an Illustrator novice. I was tearing my hair out trying to get the add point tool to add a point to a path. It refused. I finally got it to work...
    5. Ccopying a datatable content from an untyped dataset into a table which is inside a typed dataset
      Hi All, I am facing problem in copying content of table from a untyped dataset into to a table inside the typed dataset. I wanted to copy the data...
  3. #2

    Default Re: what's the point of using a dataset in ASP.net?

    how is data not read-only if you are showing it as an HTML webpage?

    what do you mean going back and forth between records?


    "Naveen K Kohli" <naveenkohli@hotmail.com> wrote in message
    news:%23o3itKPPDHA.1608@TK2MSFTNGP11.phx.gbl...
    > Ofcourse.. if you are using the data as read only. But if you have to go
    > back and froth between records then you can't do that with DataReader.
    >
    > --
    > Naveen K Kohli
    > [url]http://www.netomatix.com[/url]
    > "neil m" <nospam.macguigan@hotmail.com> wrote in message
    > news:6x2La.308229$ro6.7513889@news2.calgary.shaw.c a...
    > > what's the point of using a dataset in ASP.net?
    > >
    > > why not just use datareader?
    > >
    > > thx
    > >
    > > nm
    > >
    > >
    >
    >

    neil m Guest

  4. #3

    Default what's the point of using a dataset in ASP.net?

    The real reason a dataset is of use in ASP.NET is the XML
    storage. I never iterate through records using Code
    anymore, I use XSLT for transforming data so the
    convenience of the getXML() method on the Dataset is very
    nice. Some day I may write a class thats a little easier
    on memory but I have been very happy with the Dataset so
    far.

    I also have yet to buy into Databinding for a production
    website, so I haven't used this feature nearly as much as
    some but that would require the Dataset also.

    Hope this helps.
    >-----Original Message-----
    >what's the point of using a dataset in ASP.net?
    >
    >why not just use datareader?
    >
    >thx
    >
    >nm
    >
    >
    >.
    >
    Terance Emory Guest

  5. #4

    Default Re: what's the point of using a dataset in ASP.net?

    neil m wrote:
    > how is data not read-only if you are showing it as an HTML webpage?
    You can store data from database to dataset, investigate it, perform
    complicated operation on dataset (add, delete, update, just like it is
    database itself) and simply call some methods to update the database
    accordingly to changes you made to dataset.
    > what do you mean going back and forth between records?
    Every time you call datareader.read() method, one row from database is
    transferred to your asp.net code. You can only read it (can't change it), you
    can't (without repeating the query) go back to previous row, once you read
    the next row.

    HTH, Ante

    Ante Perkovic Guest

  6. #5

    Default Re: what's the point of using a dataset in ASP.net?

    A DataReader is a connected forward-only read-once type of result set. A
    DataSet is a disconnected container which provides richer navigational
    capabilities, as well as the ability to persist data as XML. The DataReader
    is faster, so it should be used when the extra functionality of a DataTable
    or DataSet is not needed.

    HTH,

    Kevin Spencer
    Microsoft FrontPage MVP
    Internet Developer
    [url]http://www.takempis.com[/url]
    Big things are made up of
    lots of Little things.

    "neil m" <nospam.macguigan@hotmail.com> wrote in message
    news:6x2La.308229$ro6.7513889@news2.calgary.shaw.c a...
    > what's the point of using a dataset in ASP.net?
    >
    > why not just use datareader?
    >
    > thx
    >
    > nm
    >
    >

    Kevin Spencer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139