2012年3月12日 星期一

dataset add new row

參考MSDN
--
 Dim anyRow as DataRow = ExistingTable.NewRow
anyRow(0) = "Jay"
anyRow(1) = "Stevens"
ExistingTable.Rows.Add(anyRow)

--
以上有缺:欄位的定義 , 加上去後; dataset  datatable 就能用了

沒有留言:

張貼留言