Distributed .NET Programming in C sharp (Intertech Instructor Series) (2002. XXV, 494 p. w. figs. 23,5 cm)

個数:
  • ポイントキャンペーン

Distributed .NET Programming in C sharp (Intertech Instructor Series) (2002. XXV, 494 p. w. figs. 23,5 cm)

  • ウェブストア価格 ¥8,600(本体¥7,819)
  • APRESS(2002発売)
  • 外貨定価 US$ 49.95
  • ゴールデンウィーク ポイント2倍キャンペーン対象商品(5/6まで)
  • ポイント 156pt
  • 提携先の海外書籍取次会社に在庫がございます。通常3週間で発送いたします。
    重要ご説明事項
    1. 納期遅延や、ご入手不能となる場合が若干ございます。
    2. 複数冊ご注文の場合、分割発送となる場合がございます。
    3. 美品のご指定は承りかねます。
  • 【入荷遅延について】
    世界情勢の影響により、海外からお取り寄せとなる洋書・洋古書の入荷が、表示している標準的な納期よりも遅延する場合がございます。
    おそれいりますが、あらかじめご了承くださいますようお願い申し上げます。
  • ◆画像の表紙や帯等は実物とは異なる場合があります。
  • ◆ウェブストアでの洋書販売価格は、弊社店舗等での販売価格とは異なります。
    また、洋書販売価格は、ご注文確定時点での日本円価格となります。
    ご注文確定後に、同じ洋書の販売価格が変動しても、それは反映されません。
  • 製本 Paperback:紙装版/ペーパーバック版/ページ数 450 p.
  • 商品コード 9781590590393

Full Description

With the release of .NET, Microsoft has once again altered the distributed programming landscape. Almost everything has changed, from data access, to remote object calls, to the deployment of software components. And of course, .NET introduces a new technology in XML Web services that may revolutionize Web development.

Distributed .NET Programming in C# describes how to use these new .NET technologies to build fast, scalable, and robust distributed applications. Along the way, it answers common questions such as, How do I use the .NET Remoting Framework? What role does COM+ play in the .NET universe? How can I interoperate with COM components? What's the difference between .NET Remoting and Web services? How will these changes affect the architecture and design of a distributed application?

Author Tom Barnaby assumes the reader is already familiar with the fundamentals of .NET. However, a .NET overview is provided to concisely explain several of the core .NET technologies that are essential for distributed programming, including building, versioning, and deploying assemblies; garbage collection; serialization; and attribute-based programming.

Contents

1 The Evolution of Distributed Programming.- 2 This Is .NET.- 3 Introduction to .NET Remoting.- 4 Distributed Programming with .NET Remoting.- 5 Additional Remoting Techniques.- 6 Understanding XML Web Services.- 7 Understanding COM Interop.- 8 Leveraging Component Services.- 9 .NET Message Queuing.- Appendix Data Access with ADO.NET.- The Need for ADO.NET.- ADO.NET: The Big Picture.- Understanding ADO.NET Namespaces.- The Types of System.Data.- Examining the DataColumn Type.- Building a DataColumn.- Adding a DataColumn to a DataTable.- Configuring a DataColumn to Function as a Primary Key.- Enabling Autoincrementing Fields.- Configuring a Column's XML Representation.- Examining the DataRow Type.- Understanding the DataRow.RowState Property.- The ItemArray Property.- Details of the DataTable.- Building a Complete DataTable.- Manipulating a DataTable: Deleting Rows.- Manipulating a DataTable: Applying Filters and Sort Orders.- Manipulating a DataTable: Updating Rows.- Understanding the DataView Type.- Understanding the Role of the DataSet.- Members of the DataSet.- Building an In-Memory DataSet.- Expressing Relations Using the DataRelation Type.- Navigating Between Related Tables.- Reading and Writing XML-Based DataSets.- Building a Simple Test Database.- ADO.NET Managed Providers.- Working with the OleDb Managed Provider.- Establishing a Connection Using the OleDbConnection Type.- Building a SQL Command.- Working with the OleDbDataReader.- Connecting to an Access Database.- Executing a Stored Procedure.- The Role of the OleDbDataAdapter Type.- Filling a DataSet Using the OleDbDataAdapter Type.- Working with the SQL Managed Provider.- The System.Data.SqlTypes Namespace.- Inserting New Records Using the SglDataAdapter.- Updating Existing Records Using theSglDataAdapter.- Autogenerated SQL Commands.- Filling a Multitabled DataSet (and Adding DataRelations).- Summary.