Manipulating Dataset

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default Manipulating Dataset

    Dear gurus,

    I have a stored procedure which returns a set of rows.

    How do I suppress a number of columns (not display) from dataset?
    Is is DataSet is the right tool in this case?

    Thank you.

    Hai


    Hai Guest

  2. Similar Questions and Discussions

    1. 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
    2. Manipulating a 3d object
      Hi, I am very new to Director, but I have made a 3d model in 3ds max, and have been able to import it as a new cast member. I want the user to...
    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. Help with manipulating a string.
      I've got a multiline text box that will feed the ^M at the end of each line. I want to capture it into a single line (which is done), but how do I...
    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: Manipulating Dataset

    Hai,
    Before you bind the dataset, you can mark the columns as hidden. I
    haven't tried this code, but, it works on the WinForms datagrid. If you
    aren't going to use the hidden results of the stored procedure you should
    probably create a procedure that only returns the columns you need, it's
    probably a better option.
    HTH,
    Jared

    Dim ds As DataSet
    For Each col As DataColumn In ds.Tables(0).Columns
    Select Case col.ColumnName
    Case Is = "Hideme", "HideMeToo", "DontDisplay"
    col.ColumnMapping = MappingType.Hidden
    End Select
    Next

    "Hai" <hai21century@yahoo.com> wrote in message
    news:%23tvNidYrEHA.1964@TK2MSFTNGP12.phx.gbl...
    > Dear gurus,
    >
    > I have a stored procedure which returns a set of rows.
    >
    > How do I suppress a number of columns (not display) from dataset?
    > Is is DataSet is the right tool in this case?
    >
    > Thank you.
    >
    > Hai
    >
    >

    Jared Guest

  4. #3

    Default Re: Manipulating Dataset

    Hello Jared,

    Thank you very much but it did not seem to work or because I did not get
    the syntax correct.

    Hai

    "Jared" <ask_me_for_it@nospam.com> wrote in message
    news:10mfpub84vce38a@corp.supernews.com...
    > Hai,
    > Before you bind the dataset, you can mark the columns as hidden. I
    > haven't tried this code, but, it works on the WinForms datagrid. If you
    > aren't going to use the hidden results of the stored procedure you should
    > probably create a procedure that only returns the columns you need, it's
    > probably a better option.
    > HTH,
    > Jared
    >
    > Dim ds As DataSet
    > For Each col As DataColumn In ds.Tables(0).Columns
    > Select Case col.ColumnName
    > Case Is = "Hideme", "HideMeToo", "DontDisplay"
    > col.ColumnMapping = MappingType.Hidden
    > End Select
    > Next
    >
    > "Hai" <hai21century@yahoo.com> wrote in message
    > news:%23tvNidYrEHA.1964@TK2MSFTNGP12.phx.gbl...
    > > Dear gurus,
    > >
    > > I have a stored procedure which returns a set of rows.
    > >
    > > How do I suppress a number of columns (not display) from dataset?
    > > Is is DataSet is the right tool in this case?
    > >
    > > Thank you.
    > >
    > > Hai
    > >
    > >
    >
    >

    Hai Guest

  5. #4

    Default Re: Manipulating Dataset

    Hai,
    Like I said before, I haven't tried the code on a webforms datagrid
    before. I did find an article that states you cannot hide autogenerated
    columns in a web forms datagrid. There is an example that will produce the
    results you want.
    [url]http://authors.aspalliance.com/aldotnet/examples/hidecolumnarticle.aspx[/url]
    Jared

    "Hai" <hai21century@yahoo.com> wrote in message
    news:OmlhUA8rEHA.1388@TK2MSFTNGP09.phx.gbl...
    > Hello Jared,
    >
    > Thank you very much but it did not seem to work or because I did not get
    > the syntax correct.
    >
    > Hai
    >
    > "Jared" <ask_me_for_it@nospam.com> wrote in message
    > news:10mfpub84vce38a@corp.supernews.com...
    >> Hai,
    >> Before you bind the dataset, you can mark the columns as hidden. I
    >> haven't tried this code, but, it works on the WinForms datagrid. If you
    >> aren't going to use the hidden results of the stored procedure you should
    >> probably create a procedure that only returns the columns you need, it's
    >> probably a better option.
    >> HTH,
    >> Jared
    >>
    >> Dim ds As DataSet
    >> For Each col As DataColumn In ds.Tables(0).Columns
    >> Select Case col.ColumnName
    >> Case Is = "Hideme", "HideMeToo", "DontDisplay"
    >> col.ColumnMapping = MappingType.Hidden
    >> End Select
    >> Next
    >>
    >> "Hai" <hai21century@yahoo.com> wrote in message
    >> news:%23tvNidYrEHA.1964@TK2MSFTNGP12.phx.gbl...
    >> > Dear gurus,
    >> >
    >> > I have a stored procedure which returns a set of rows.
    >> >
    >> > How do I suppress a number of columns (not display) from dataset?
    >> > Is is DataSet is the right tool in this case?
    >> >
    >> > Thank you.
    >> >
    >> > Hai
    >> >
    >> >
    >>
    >>
    >
    >

    Jared Guest

  6. #5

    Default Re: Manipulating Dataset

    Jared,
    Fantastic.
    Thanks a lot

    Hai

    "Jared" <ask_me_for_it@nospam.com> wrote in message
    news:10mnfeffarv0u31@corp.supernews.com...
    > Hai,
    > Like I said before, I haven't tried the code on a webforms datagrid
    > before. I did find an article that states you cannot hide autogenerated
    > columns in a web forms datagrid. There is an example that will produce the
    > results you want.
    > [url]http://authors.aspalliance.com/aldotnet/examples/hidecolumnarticle.aspx[/url]
    > Jared
    >
    > "Hai" <hai21century@yahoo.com> wrote in message
    > news:OmlhUA8rEHA.1388@TK2MSFTNGP09.phx.gbl...
    > > Hello Jared,
    > >
    > > Thank you very much but it did not seem to work or because I did not
    get
    > > the syntax correct.
    > >
    > > Hai
    > >
    > > "Jared" <ask_me_for_it@nospam.com> wrote in message
    > > news:10mfpub84vce38a@corp.supernews.com...
    > >> Hai,
    > >> Before you bind the dataset, you can mark the columns as hidden. I
    > >> haven't tried this code, but, it works on the WinForms datagrid. If you
    > >> aren't going to use the hidden results of the stored procedure you
    should
    > >> probably create a procedure that only returns the columns you need,
    it's
    > >> probably a better option.
    > >> HTH,
    > >> Jared
    > >>
    > >> Dim ds As DataSet
    > >> For Each col As DataColumn In ds.Tables(0).Columns
    > >> Select Case col.ColumnName
    > >> Case Is = "Hideme", "HideMeToo", "DontDisplay"
    > >> col.ColumnMapping = MappingType.Hidden
    > >> End Select
    > >> Next
    > >>
    > >> "Hai" <hai21century@yahoo.com> wrote in message
    > >> news:%23tvNidYrEHA.1964@TK2MSFTNGP12.phx.gbl...
    > >> > Dear gurus,
    > >> >
    > >> > I have a stored procedure which returns a set of rows.
    > >> >
    > >> > How do I suppress a number of columns (not display) from dataset?
    > >> > Is is DataSet is the right tool in this case?
    > >> >
    > >> > Thank you.
    > >> >
    > >> > Hai
    > >> >
    > >> >
    > >>
    > >>
    > >
    > >
    >
    >

    Hai 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