Using DataView : DataView « Database ADO.net « Visual C++ .NET

Home
Visual C++ .NET
1.2D
2.Class
3.Collections
4.Data Type
5.Database ADO.net
6.Delegate
7.Development
8.File Directory
9.Function
10.Generics
11.GUI Form
12.Language Basics
13.Network
14.Reflection
15.Security
16.Statement
17.Structure
18.Thread
19.XML
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Visual C++ .NET » Database ADO.net » DataView 
Using DataView
 
#include "stdafx.h"
using namespace System;
using namespace System::Data;

void main()
{
    DataSet^ myDataSet = gcnew DataSet("Game_Data");

    myDataSet->ReadXml("schema.xml");
    DataTable^ playerTable = myDataSet->Tables["Player"];

    for int i = 0; i < playerTable->Rows->Count; i++ )
        Console::WriteLine("Player {0}: {1} {2}",
        i, playerTable->Rows[i]["First_Name"],
        playerTable->Rows[i]["Last_Name"]);

    DataView^ myView = gcnew DataView(playerTable, "Last_Name='F'","First_Name DESC", DataViewRowState::CurrentRows);

    Console::WriteLine();
    Console::WriteLine("{0} rows in the view", myView->Count);

    for int i = 0; i < myView->Count; i++ )
        Console::WriteLine("Player {0}: {1} {2}", i,myView[i]["First_Name"],myView[i]["Last_Name"]);
}

   
  
Related examples in the same category
1.DataView Setting
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.