ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Microsoft Related  >>  ASP.NET
 
 


 

 
 Visual Basic interview questions  Visual Basic Interview Questions
 C Sharp interview questions  C Sharp Interview Questions
 ASP.NET interview questions  ASP.NET Interview Questions
 VB.NET interview questions  VB.NET Interview Questions
 COM+ interview questions  COM+ Interview Questions
 ADO.NET interview questions  ADO.NET Interview Questions
 IIS interview questions  IIS Interview Questions
 MTS interview questions  MTS Interview Questions
 Crystal Reports interview questions  Crystal Reports Interview Questions
 BizTalk interview questions  BizTalk Interview Questions
 Dot Net interview questions  Dot Net Interview Questions
 Exchange Server interview questions  Exchange Server Interview Questions
 SharePoint interview questions  SharePoint Interview Questions
 Microsoft Related AllOther interview questions  Microsoft Related AllOther Interview Questions
Question
what is the use of untyped data set ?
 Question Submitted By :: Darisi.nag
I also faced this Question!!     Rank Answer Posted By  
 
  Re: what is the use of untyped data set ?
Answer
# 1
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 ?    1 Yes 1 No
M_dasharatham
 
  Re: what is the use of untyped data set ?
Answer
# 2
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 ?    1 Yes 0 No
Rahul
 
 
 

 
 
 
Other ASP.NET Interview Questions
 
  Question Asked @ Answers
 
What is the Difference B/W Finalize() and Dispose() in .Net? HCL7
Can we use multiple forms in single asp.net application? Polaris2
How would you get ASP.NET running in Apache web servers - why would you even do this?  1
About DataAdapters ? Accenture7
what r the Templeats in ASP.net? Intel5
How can you provide an alternating color scheme in a Repeater control?  3
if i have 1000 records and i want to access 20 ata time from SQL server, what will be the query? Mind-Tree5
What are the different methods that are used during the page load?  1
What line in the following XML document will generate an error? <?xml version=?1.0?> <employees> <employee> <name>Bob Andcarrol</name> </employee> <employee> <name>Robert Burns</name> </employee> </employees> a) 6 b) 4 c) 1 d) There is no error Syntax-Softtech2
Caching techniques in .NET? Microsoft2
Can you explain what inheritance is and an example of when you might use it?  1
what is CLR? PrimeLine3
what are partial classes and their use? Microsoft2
what is reference type to value type. AG-Technologies2
Finally and dispose methods? Microsoft1
What does setting a control's EnableViewState property to false accomplish?  1
Types of state management techniques ? Digital-GlobalSoft2
If I m using Session State Partioning where I have partitioned my session into 4 servers then how can I know that my session will be stored on which server?  1
what are the main advantage in .net? TCS3
Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?  1
 
For more ASP.NET Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com