Is it possible to copy n-row to another dataset?
Is it possible to copy n-row to another dataset?
Currently I am using below code published in another forum..
dim srcRow, dstRow as DataRow, dstTab as Datatable
srcRow=...
dstRow=dstTab.NewRow()
For i as integer=0 to dstrow.columns.count-1
dstRow(i)=srcrow(i)
Next
dstTab.Rows.Add(dstRow)
is there any other way that will copy faster than this??
Any input or pointer will be great !!
Cheers :)
vinod
__________________
Cheers :)
vinod
|