what is the use of untyped data set ?
Answers were Sorted based on User's Feedback
Answer / rahul
Dataset are two types 1.Typed dataset
2. Untyped dataset.
In typed dataset we've autocompletion and intelisense of vs.
and also data's from datset are cached in xml format.
But in untyped dataset, it just connect with the database
and it doesn't support any other features of Vs.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / 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 |
Answer / rahul bhatnagar
Sorry for the above answer---
This is correct one...
Type Dataset
You will get type mismatch and other errors at compile time.
UnType Dataset
You will get type mismatch and other errors at runtime.
Example :
string custid;
custid=dsetcust.customer(0).customerid;
untyped dataset
string custid;
custid=Convert.toString(dsetcust.customer(0).customerid);
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / nidhi garg
in untyped dataset, it just connect with the database
and it doesn't support any intellisence features of Vs.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rahul bhatnagar
UnType Dataset
You will get type mismatch and other errors at compile time.
Type Dataset
You will get type mismatch and other errors at runtime.
Example :
string custid;
custid=dsetcust.customer(0).customerid;
untyped dataset
string custid;
custid=Convert.toString(dsetcust.customer(0).customerid);
Is This Answer Correct ? | 0 Yes | 2 No |
Explain diff between dataset and datareader?
What are the HTML server controls in ASP.NET?
What is an il?
Explain MVC model binders?
What is the flow of processing of the request? : asp.net mvc
What are the new page events added in Asp.net 2.0 ?
What tags do you need to add within the asp:datagrid tags to bind columns manually?
What is Web Gardening? How would using it affect a design ?
How to implement caching?
can s/w quality assurance engineer switch field to programming side i m very much interested in programming but not much good in it
What is the adavantage of using ASP.NET routing?
what is .net