Advertisement
OKIEWARDOYO

C# No.46 1

Aug 4th, 2014
3,849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2. using System.Data;
  3.  
  4. namespace Siswa__dan_Mapel
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             //buat table1
  11.             DataTable Table1 = new DataTable("tabelsiswa");
  12.             Table1.Columns.Add("id");
  13.             Table1.Columns.Add("nama");
  14.             Table1.Rows.Add(1, "okie");
  15.             Table1.Rows.Add(2, "nega");
  16.  
  17.             //buat table2
  18.             DataTable Table2 = new DataTable("tabelmapel");
  19.             Table2.Columns.Add("mapelid");
  20.             Table2.Columns.Add("pelajaran");
  21.             Table2.Rows.Add(1, "matematika");
  22.             Table2.Rows.Add(2, "ipa");
  23.  
  24.             //buat dataset dan tambahkan table ke dataset
  25.             DataSet MyDataset = new DataSet("percobaan");
  26.             MyDataset.Tables.Add(Table1);
  27.             MyDataset.Tables.Add(Table2);
  28.  
  29.             //tampilkan di console
  30.             Console.WriteLine(MyDataset.GetXml());
  31.             //Console.WriteLine(MyDataset.GetXmlSchema());
  32.             Console.ReadLine();
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement