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

  1. #1

    Default useage of Fill?

    I am confused about this code:

    Line 1 Dbcommand = new oledbdataadapter ("select * from employees order by
    lastname, firstname", DBConn)

    Line 2: dbcommand.fill(dspagedata, "employees")


    In line 2 is "employees" the name of the array that we are creating in the dspagedata
    dataset variable?
    --
    BethF, Anchorage, AK

    It's YOUR God.
    They are YOUR rules.
    YOU burn in hell.
    Child Guest

  2. Similar Questions and Discussions

    1. How to fill a Tree
      Hi, I need your help guys. I'm calling a cfc from coldfusion that returns an array that has the following structure: Category1 Subcategory1;...
    2. fill
      How to fill open path?
    3. export only animation from Maya, RAM useage issues
      Hello everyone, I am involved in a project that will deliver an interactive software for teaching math and science to deaf children. We've...
    4. PS: fill the gap
      I have a photo with two faces and I would like to change the heads. I constructed two new levels each with one head and move them to the opposite...
    5. Trace useage of named anchors?
      I have a WEB page which is being used to create an HTML HELP file. Being the result of a creation made in Word2000, it contains a lot of named...
  3. #2

    Default Re: useage of Fill?


    "Craig Deelsnyder" <cdeelsny@NOSPAMyahoo.com> wrote in message
    news:OmDgM4IXDHA.3444@tk2msftngp13.phx.gbl...
    > It's the name of the DataTable in the DataSet dspagedata that is to be
    > populated by that query.
    >

    Thank you Craig.

    Can a dataset have more than one datatable?


    Child Guest

  4. #3

    Default Re: useage of Fill?

    YES, MANY


    "Child" <beth@NOT-SO-bad-dawgs-in-ak.com> wrote in message
    news:vj3mdijh1c1e1@corp.supernews.com...
    >
    > "Craig Deelsnyder" <cdeelsny@NOSPAMyahoo.com> wrote in message
    > news:OmDgM4IXDHA.3444@tk2msftngp13.phx.gbl...
    > > It's the name of the DataTable in the DataSet dspagedata that is to be
    > > populated by that query.
    > >
    >
    >
    > Thank you Craig.
    >
    > Can a dataset have more than one datatable?
    >
    >

    MS News \(MS LVP\) 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