use the Find() and FindRows() methods of a DataView to find DataRowView objects : DataView « Database ADO.net « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Database ADO.net » DataViewScreenshots 
use the Find() and FindRows() methods of a DataView to find DataRowView objects





using System;
using System.Data;
using System.Data.SqlClient;

class FindingDataRowViews {
    public static void Main() {
        SqlConnection mySqlConnection =
          new SqlConnection(
            "server=localhost;database=Northwind;uid=sa;pwd=sa"
          );
        SqlCommand mySqlCommand = mySqlConnection.CreateCommand();
        mySqlCommand.CommandText =
          "SELECT CustomerID, CompanyName, Country " +
          "FROM Customers";
        SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
        mySqlDataAdapter.SelectCommand = mySqlCommand;
        DataSet myDataSet = new DataSet();
        mySqlConnection.Open();
        mySqlDataAdapter.Fill(myDataSet, "Customers");
        mySqlConnection.Close();
        DataTable customersDT = myDataSet.Tables["Customers"];

        string filterExpression = "Country = 'UK'";
        string sortExpression = "CustomerID";
        DataViewRowState rowStateFilter = DataViewRowState.OriginalRows;

        DataView customersDV = new DataView();
        customersDV.Table = customersDT;
        customersDV.RowFilter = filterExpression;
        customersDV.Sort = sortExpression;
        customersDV.RowStateFilter = rowStateFilter;

        foreach (DataRowView myDataRowView in customersDV) {
            for (int count = 0; count < customersDV.Table.Columns.Count; count++) {
                Console.WriteLine(myDataRowView[count]);
            }
            Console.WriteLine("");
        }

        int index = customersDV.Find("BSBEV");
        Console.WriteLine("BSBEV found at index " + index + "\n");
        DataRowView[] customersDRVs = customersDV.FindRows("BSBEV");
        foreach (DataRowView myDataRowView in customersDRVs) {
            for (int count = 0; count < customersDV.Table.Columns.Count; count++) {
                Console.WriteLine(myDataRowView[count]);
            }
            Console.WriteLine("");
        }
    }
}

           
       
Related examples in the same category
1.illustrates the use of a DataView object to filter and sort rows
2.Create DataView through DataTable
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.