how to get first row results

G

Guest

If my query results are more tha one row, how do I point to the firstrow and
the to the second row etc, to bind the data to textboxes?
 
G

Guest

How do you read your query results ? If you're using DataSet use:
myDataSet.Tables[0].Rows[Index]
If you're using DataReader, just use ReadNext method

Regards,
Kostadin Kostov
 
K

Karl Seguin

Kostadin answered your question then...

//c#
ds.Tables[0].Rows[0]["ColumnName"]

'vb.net
ds.Tables(1).Rows(0)("ColumnName")

Cheers,
Karl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top