how to get a column of recordset in an arraylist ?? using vb.net .. please help me out ..
A:
hadi teo
2009-07-03 12:57:24
Oops ! so why I came out here ? coz I depends on you :( .. anyways sorry if you mind ..
kevn
2009-07-03 13:00:09
A:
Something like:
Public Function DatasetColumnToArrayList(ds as dataset, columnName as string) As ArrayList
dim result as new arrayList
for each rw as datarow in ds.tables(0).rows
result.add(rw(columnName))
next
return result
end function
tbone
2009-07-07 01:38:50