Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > ADO.NET
|
ADO.NET For discussion about ADO.NET.  Topics such as question regarding the System.Data namespace are appropriate.  Questions specific to a particular application should be posted in a forum specific to the application .
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ADO.NET section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 22nd, 2005, 07:23 AM
Authorized User
 
Join Date: Jun 2004
Posts: 54
Thanks: 0
Thanked 1 Time in 1 Post
Default What Are Typed Dataset

Hello there,

What is Typed Dataset? Whats the use of it? whats the advantage? and any practical stuff (may be a link or code fragment)

I don't know whether this is the right forum to post this query or not. if not, I am sorry.


Vinod Pawar
India
__________________
Vinod Pawar
United States
 
Old April 22nd, 2005, 09:41 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Basically, a typed dataset is an extension of the DataSet and DataTable classes. Instead of referencing the columns of a table thru a string name you can access them with a strongly typed property. Here's a good article that provides an intro to ADO.NET and an explanation of creating and using typed datasets.

http://www.15seconds.com/issue/031223.htm

-Peter
 
Old May 13th, 2005, 04:52 AM
vbn vbn is offline
Authorized User
 
Join Date: May 2005
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,

A DataSet can be typed or untyped. The difference is that
the typed DataSet has a schema and the untyped DataSet doesn't.
A typed DataSet gives easier access to the content of table fields through strongly typed programming. Strongly typed programming uses info from the underlying data schema. This means we are programming directly against your declared objects and not the tables. A typed DataSet has a reference to an XML schema file. This scema file(*.xsd) describes the structure of all the tables contained within the DataSet.

Try to refer this book Titled:"Database programming using vb.net and SQL Server 2000".

Regards
bhar








Similar Threads
Thread Thread Starter Forum Replies Last Post
Create new row using a typed dataset humour ASP.NET 2.0 Professional 0 May 9th, 2008 09:49 PM
insert nulls using a typed dataset humour ASP.NET 2.0 Professional 3 April 16th, 2008 05:17 AM
Converting a untyped dataset to a typed dataset daphnean Visual Studio 2005 0 July 13th, 2006 01:16 AM
How can i use typed dataset with Join Sql query? vijaykumartaduri BOOK: Professional Crystal Reports for VS.NET 0 November 10th, 2005 04:02 AM
Dynamic DataAdapter from Typed Dataset dhay1999 ADO.NET 3 May 3rd, 2005 07:07 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.