摘要:[C#]合併兩個DataTable
也許有人和我一樣有這樣的需求,所以分享給有需要的人。
01
public static void AppendDataTable(DataTable hostDt, DataTable clientDt)
02
{
03
if (hostDt != null && hostDt.Rows.Count > 0)
04
{
05
DataRow dr;
06
07 for (int i = 0; i < clientDt.Columns.Count; i++)
08
{
09
hostDt.Columns.Add(new DataColumn(clientDt.Columns[i].ColumnName));
10
11 if (clientDt.Rows.Count > 0)
12
for (int j = 0; j < clientDt.Rows.Count; j++)
13
{
14
dr = hostDt.Rows[j];
15
dr[hostDt.Columns.Count - 1] = clientDt.Rows[j][i];
16
dr = null;
17
}
18
}
19
}
20
}

02

03

04

05

06

07 for (int i = 0; i < clientDt.Columns.Count; i++)
08

09

10

11 if (clientDt.Rows.Count > 0)
12

13

14

15

16

17

18

19

20

之所以沒有回傳是因為Reference Type Object原本就是passed by reference。然而,如果你的來源資料表(例如這邊的hostDt和clientDt)在呼叫過後會被disposed,那此方法就要改成如下:
01
public static DataTable AppendDataTable(DataTable hostDt, DataTable clientDt)
02
{
03
if (hostDt != null && hostDt.Rows.Count > 0)
04
{
05
DataRow dr;
06
07 for (int i = 0; i < clientDt.Columns.Count; i++)
08
{
09
hostDt.Columns.Add(new DataColumn(clientDt.Columns[i].ColumnName));
10
11 if (clientDt.Rows.Count > 0)
12
for (int j = 0; j < clientDt.Rows.Count; j++)
13
{
14
dr = hostDt.Rows[j];
15
dr[hostDt.Columns.Count - 1] = clientDt.Rows[j][i];
16
dr = null;
17
}
18
}
19
}
20
21 return hostDt.Copy();
22
}

02

03

04

05

06

07 for (int i = 0; i < clientDt.Columns.Count; i++)
08

09

10

11 if (clientDt.Rows.Count > 0)
12

13

14

15

16

17

18

19

20

21 return hostDt.Copy();
22

第1行的宣告以及第21行的回傳是有變動的地方。
6/26/2009更新:
hostDT就是要被附加上去的目的資料表,而clientDT是要附加上去的來源資料表。如果你的hostDT長得像這樣:
ID | Name |
1 | kennyshu |
2 | edith |
3 | alice |
而clientDT是這樣:
Zip | State |
70802 | LA |
11373 | NY |
合併之後會變成這樣:
ID | Name | Zip | State |
1 | kennyshu | 70802 | LA |
2 | edith | 11373 | NY |
3 | alice |
要注意的是,來源資料表的列數(row)不可以比目的資料表來得多,否則會丟出例外訊息。