October 2010
Intermediate to advanced
1920 pages
73h 55m
English
The ADO.NET Framework encompasses a huge number of classes. However, at its heart, it actually consists of the following three classes:
• Connection—
Enables you to represent a connection to a data source.
• Command—
Enables you to execute a command against a data source.
• DataReader—
Enables you to represent data retrieved from a data source.
Most of the other classes in ADO.NET Framework are built from these three classes. These three classes provide you with the fundamental methods of working with database data. They enable you to connect to a database, execute commands against a database, and represent the data returned from a database.
Now that you understand the importance of these three classes, it’s safe to tell ...