Typed and Untyped Dataset

M

Miha Markic [MVP C#]

Hi Reza,

Typed dataset is just a class derived from DataSet that lets you access data
through methods and properties, i.e.
Instead of typing row["somecolumn"] = ... you just type row.somecolumn = .
Which has two main benefits: vs.net helps you coding and your code is less
error prone.

HTH
 

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

Top