Ado Net
Ado Net
NET
Jenny Chang Student Ambassador to Microsoft CSU Los Angeles
Agenda
Introduce you to ADO.NET Describe the connected layer of ADO.NET as implemented by .NET data providers Describe the disconnected layer of ADO.NET as implemented by the DataSet Demonstrate integration of ADO.NET within Visual Studio
Why ADO.NET?
Requires COM and Windows Recordsets dont travel well across the Internet Connected behavior is hard to work with
Uses XML under the covers for all data transport XML has no runtime/transport requirements No special code required to marshal across the Internet All data access disconnected All data transport uses XML
ADO.NET is a collection of classes, interfaces, structures, and enumerated types that manage data access from relational data stores within the .NET Framework
These collections are organized into namespaces: System.Data, System.Data.OleDb, System.Data.SqlClient, etc. Does not share the same object model, but shares many of the same paradigms and functionality!
Connected Or Disconnected?
System.Data
DataSet,
Specific
Connected Or Disconnected?
The answer in ADO it depends on the cursor you are using. With ADO.NET:
Data is always on the client (via DataSet) or on its way to the client (via IDataReader)
ADO.NET Architecture
Presentation Tier
Windows Forms
MyApp.Exe
DataSet
Business Tier
Web Forms
IE
Data Tier
Internet Intranet
XML
DataSet
Business to Business
ADO.NET
ODBC Driver .NET Data Provider ODBC
Connection
ODBC RDBMS
Command
OLE DB
OLE DB Provider
Application
OLE DB RDBMS
Data Reader
Data Adapter
SQL Server
ADO.NET Objects
Connection
Connects to data source Executes SELECT, INSERT, UPDATE and DELETE commands Forward-only, read-only stream of data
Command
Data Reader
Data Adapter
If you need full data access, use DataAdapter object (SQLDataAdapter, OleDbDataAdapter) DataAdapter represents a set of data commands and a database connection
Fills a DataSet (using Fill method) Updates data (using Update method)
DataSet provides local cache for disconnected data All data marshaled as XML
Make changes in cached data Use Update method to write changes from cached data back to data source
Fills a DataSet
DataSet Object
Disconnected model
Has no knowledge of data source Array-like indexing Strong typing Supports data binding
Summary
ADO.NET provides a rich API for working with data ADO.NET has been designed to support legacy architectures as well as Internet-enabled, n-tier designs The .NET Frameworks extensive XML support means greater reach for all of your data-enabled applications
References
Questions? Dont Forget to Fill Out the Evaluation Form & Win Some Prizes!