.net – add rows to a dataset

.netvb.net

Is it possible to add rows to a dataset?

Best Solution

yes.

dim row as DataRow 
row = ds.tables(0).NewRow 
' Add Values to Row here 
ds.tables(0).rows.add(row)