Hi
If i have a sql query that returns a datsset that looks like this
C1 C2 C3 C4 C4
how do i get the C4 when there are two columns with same name
For Each Row In ds.Tables(0).Rows
strC1 = Row("C1").ToString
strC2 = Row("C2").ToString
strC3 = Row("C3").ToString
strC4_1 = Row(" ???").ToString
strC4_2 = Row(" ???").ToString
Next
Start Free Trial