Add columns to DataTable : DataTable « Database ADO.net « Visual C++ .NET






Add columns to DataTable

 

#include "stdafx.h"
using namespace System;
using namespace System::Data;

void main()
{
    DataSet^ myDataSet = gcnew DataSet("Game Data");
    myDataSet->Tables->Add("Player");
    myDataSet->Tables->Add("Score");

    DataTable^ playerTable = myDataSet->Tables["Player"];
    DataColumn^ firstNameColumn1 = playerTable->Columns->Add("First Name",String::typeid);
    DataColumn^ lastNameColumn1 = playerTable->Columns->Add("Last Name",String::typeid);
    playerTable->Columns->Add("Email", String::typeid);

}

   
  








Related examples in the same category

1.Add primary key constraints to DataTable
2.Add foreign key to the DataTable
3.Data Relations
4.Table Mapping