CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2006
    Posts
    96

    [RESOLVED] Can we Filter DataSet.Table rows collection

    Dear All

    can we filter subset of DataSet.Table row collection in ADO.Net. Early days adodb's recordset was providing Filter method to get subset of its records, but i couldn't find a similar option in ado.net.

    thanks in advance and looking for your immediate suggestions

    Warun

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Can we Filter DataSet.Table rows collection

    Now it's .RowFilter
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Sep 2006
    Posts
    96

    Re: Can we Filter DataSet.Table rows collection

    Thanks and it solved....you cannot apply filter condition to DataSet.Table, but can in DataView. I have solved this by giving DataSet.Table reference to DataView. DataView is better datasource when you are working around web based program.

    Warun
    Last edited by kvwarun; July 8th, 2008 at 12:03 AM.

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

Featured