I have executed an oracle stored proc and assigned the resultset to a dataset.
How can I go thru each record in the dataset ?
thanks
nath
Printable View
I have executed an oracle stored proc and assigned the resultset to a dataset.
How can I go thru each record in the dataset ?
thanks
nath
Code:foreach(DataRow dr in ds.Tables[0].Rows)
{
MessageBox.Show(dr[2].ToString());
}