what is the use of untyped data set ?

Answer Posted / m_dasharatham

An "untyped" dataset is an instance of the DataSet class
from the System.Data namespace. It’s called “untyped”
because all columns are provided as the base System.Object
type (“object” in C# and “Object” in VB.NET) and must be
coerced to the appropriate type, e.g.

void Form1_Load(object sender, EventArgs e) {
DataSet ds = new DataSet();
sqlDataAdapter1.Fill(ds);
foreach( DataRow row in ds.Tables[0].Rows ) {
string fname = (string)row["au_fname"];
bool contract = (bool)row["contract"];
string item =
string.Format("{0} has a contract: {1}", fname,
contract);
listBox1.Items.Add(item);
}
}

Is This Answer Correct ?    3 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you debug your.net application?

728


What is difference between inproc and outproc?

863


Define application state variable and session state variable?

754


How many types of cookies are available in asp?

770


Explain the code Access Security (CAS) in .net Framework?

949






What is mvc in asp.net tutorial? : Asp.Net MVC

761


Explain the path instructions in xaml?

742


Is post back in asp.net?

681


How many web config files can be created for an application?

609


Why would anyone need to implement their own hashtable or linked list?

2661


What is syntax code to send email from an asp.net application?

724


Why do we need asp.net?

760


Mention the execution process for managed code?

715


Explain exception filters?

755


What is csrf attack in asp.net?

683