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 |
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
Why is global asax is used?
What is Web Services?How we can consume a Web Services in our application?Explain.
How we can bind textbox,listbox and datagrid to sql server database in asp.net using visualstudio.net language (vb.net)?
What is the appSettings Section in the web.config file?
You are creating a Web site for Your company. You receive product lists in the form of XML documents. You are creating a procedure to extract information from these XML documents according to criteria that your users will select. When a user makes a request, you want the results of these requests to be returned as quickly as possible. What should you do? A . Create an XmlDataDocument object and load it with the XML dat Use the DataSet property of the object to create a DataSet object. Use a SQL SELECT statement to extract the requested dat B . Create an XmlDataDocument object and load it with the XML data. Use the SelectNodes method of the object to extract the requested data. C . Create an XPathDocument object and load it with the XML data. Call the CreateNavigator method to create an XPathNavigator object. Call the Select method of the XPathNavigator object to run an XPath query that extracts the requested data. D . Create an XmlReader object. Use the Read method of the object to stream through the XML data and to apply an XPath expression to extract the requested data.
What is role manager work in web.config? how to restrict perticular pages from the users using the role manager?
What is DTS package?
Where sessions are stored in asp.net?
What is the significance of ASP.NET routing?
How many types of validators are there in asp net?
I have to send data throug querystring from one page to another. But it should not be displayed in URL. How it is possible?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)