Sams Teach Yourself ADO.NET in 24 Hours (Sams Teach Yourself)

個数:

Sams Teach Yourself ADO.NET in 24 Hours (Sams Teach Yourself)

  • 在庫がございません。海外の書籍取次会社を通じて出版社等からお取り寄せいたします。
    通常6~9週間ほどで発送の見込みですが、商品によってはさらに時間がかかることもございます。
    重要ご説明事項
    1. 納期遅延や、ご入手不能となる場合がございます。
    2. 複数冊ご注文の場合、分割発送となる場合がございます。
    3. 美品のご指定は承りかねます。
  • 【入荷遅延について】
    世界情勢の影響により、海外からお取り寄せとなる洋書・洋古書の入荷が、表示している標準的な納期よりも遅延する場合がございます。
    おそれいりますが、あらかじめご了承くださいますようお願い申し上げます。
  • ◆画像の表紙や帯等は実物とは異なる場合があります。
  • ◆ウェブストアでの洋書販売価格は、弊社店舗等での販売価格とは異なります。
    また、洋書販売価格は、ご注文確定時点での日本円価格となります。
    ご注文確定後に、同じ洋書の販売価格が変動しても、それは反映されません。
  • 製本 Paperback:紙装版/ペーパーバック版/ページ数 408 p.
  • 言語 ENG
  • 商品コード 9780672323836
  • DDC分類 005.758

Full Description

ADO.NET is the data access model built into the .NET Framework. It replaces the old (and largely successful) ADO used in almost all Visual Basic and ASP applications built over the last few years. ADO.NET enables an application to communicate with any OLE database source (including Oracle, Sybase, Microsoft Access, and even text files). This book will present ADO.NET in a simple, easy -to-learn manner filled with many code examples and exercises. A reader with no previous knowledge of ADO.NET should be able to read this book and have a functional knowledge of new object model allowing them to retrieve and work with data from multiple data sources.

Contents

(NOTE: Each chapter concludes with a Summary, Q&A and Workshop.)
Introduction.
Hour 1. Introducing the Microsoft .NET Framework and ADO.NET.

The Microsoft .NET Framework Class Library. What Is ADO.NET? ADO.NET Versus ADO. The System.Data Namespace. The System.Data.SqlClient and System.Data.OleDb Namespaces. Installing the Microsoft .NET Framework.

Hour 2. Working with DataSets and DataTables.
Crash Course on Database Schema. DataSet Overview. Creating DataSet Schema. Adding and Removing Data.

Hour 3. Using T-SQL: A Crash Course.
Retrieving Data with SELECT. Adding New Data with INSERT. Modifying Data with UPDATE and DELETE. Using the Built-in SQL Functions.

Hour 4. Adding Relationships to DataSets.
Database Relationships and Constraints. The DataRelation Object. The DataSet Relations Collection.

Hour 5. Connecting to a Data Source.
The Connection Object. Connecting to Various Data Sources. ODBC (Open Database Connectivity). Connection Pooling.

Hour 6. Retrieving Data from the Data Source.
The Command Object. Filling a DataSet with the DataAdapter. Retrieving a Single Value from the Database.

Hour 7. Modifying Database Data.
Using ExecuteNonQuery().

Hour 8. Using the DataReader and DataAdapter.
DataReader Versus DataAdapter. Instantiating the DataReader. Binding DataReader Results to a Web Control. Stepping Through Data with the DataReader. Limitations of the DataReader.

Hour 9. Binding Data to List Controls.
Binding Data to Controls. Simple Data Binding in Windows Forms. Complex Data Binding in Windows Forms.

Hour 10. Working with XML.
What Is XML? Reading XML. Creating a DataSet from an XML File. Serializing DataSets to XML. Using XmlReader.

Hour 11. Using the Built-In ASP.NET List Controls.
Some General Notes About List Controls. Working with the Repeater. Working with the DataGrid. Working with the DataList.

Hour 12. Formatting ASP.NET List Controls.
A Quick Overview of CSS. Formatting the Repeater. Formatting the DataList. Formatting the DataGrid.

Hour 13. Handling ADO.NET Errors.
Using Formal Error Handling (Ready, "Catch"!). Typical Errors to Handle. Using RowError of the DataSet.

Hour 14. Managing ADO.NET Concurrency.
Optimistic Versus Pessimistic Concurrency. Coding for Optimistic Concurrency. Comparing DataSet Values Against the Database for Optimistic Concurrency. Using a Timestamp for Optimistic Concurrency. XML and Optimistic Concurrency.

Hour 15. Working with Stored Procedures.
What Are Stored Procedures? Executing a Stored Procedure. Using Parameters.

Hour 16. ADO Upgrade Concerns.
General Upgrade Issues from ADO to ADO.NET. Accessing an ADO Recordset from ADO.NET.

Hour 17. Using Connection Pooling.
What Is Connection Pooling? OLE DB .NET Data Provider.

Hour 18. Working with Transactions.
What Is a Transaction? Transactions and ADO.NET. Transactions with Stored Procedures.

Hour 19. Using Automatically Generated Commands.
Automatically Generated Commands. Using the CommandBuilder.

Hour 20. Working with Typed DataSets.
The Typed DataSet. Generating a Typed DataSet. Typed DataSets in Visual Studio .NET.

Hour 21. Optimizing Data Access Using Tiered Development.
What Is Tiered Development? Implementing Tiered Development. Creating Your Own Assembly.

Hour 22. Modifying Data in an N-Tier Application.
Updating Product Data. Adding Product Data.

Hour 23. Optimizing Data Access.
Optimizing ADO.NET Code. ASP.NET Tracing. Improving Your Queries with the SQL Query Analyzer. Simulating Application Traffic. Data Caching.

Hour 24. Transmitting DataSets Using Web Se