Data Access with ADO.NET
ADO.NET
3
= Is the .NET technology for accessing structured data
= Uniform object oriented interface for different data sources
– relational data bases
– XML data
– other data sources
= Designed for distributed and Web applications
= Provides 2 models for data access
– connection-oriented
– connectionless
…
Connection-oriented versus Connectionless
= Connection-oriented
– Keeps the connection to the data base alive
– Intended for applications with:
= short running transactions
= only a few parallel accesses
= up-to-date data
= Connectionless
– No permanent connection to the data source
– Data cached in main memory
– Changes in main memory ≠ changes in data source
– Intended for applications with:
= many parallel and long lasting accesses (e.g.: web applications)
…
Website: www.embeddedcmmi.at | Filesize: 406kb
No of Page(s): 80
Click here to download Data Access with ADO.NET.
Related Copyrighted Books
Microsoft® ADO.NET (Core Reference) (PRO-Developer)
Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer)
Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL
MCTS Self-Paced Training Kit (Exam 70-561): Microsoft® .NET Framework 3.5 ADO.NET Application Development (Self-Paced Training Kits)
ADO.NET Programming in Visual Basic .NET (2nd Edition)
Database Programming with Visual Basic .NET and ADO.NET: Tips, Tutorials, and Code
Related Tutorial
Tags: .NET, ADO.NET, Connection Oriented, Connectionless, Data Access, XML Data
Comments
Leave a Reply