q: loop dataset

  • Thread starter Thread starter Guest
  • Start date Start date
a quick look at the docs and you get:

for (int i = 0; i < ds.Tables.Count; ++ i)
{
string name = ds.Tables.TableName;
}

the docs use foreach, but its slower.

-- bruce (sqlwork.com)
 

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

Back
Top