Programming Microsoft Ado .NET 2.0 Applications: Advanced Topics

Overview

Dive in for reference where you need it—and learn the intricacies of developing sleeker, more robust, security-enhanced applications in ADO.NET 2.0. Featuring code samples in Microsoft Visual C# and Visual Basic, this reference goes beyond the fundamentals to help professional developers solve sophisticated enterprise development problems.

Discover how to:

  • Examine advanced connectivity options and best ...
See more details below
Available through our Marketplace sellers.
Other sellers (Paperback)
  • All (23) from $1.99   
  • New (4) from $40.07   
  • Used (19) from $1.99   
Close
Sort by
Page 1 of 1
Showing All
Note: Marketplace items are not eligible for any BN.com coupons and promotions
$40.07
Seller since Fri Jan 01 01:01:01 EST 2010

Feedback rating:

(57)

Condition:

New — never opened or used in original packaging.

Like New — packaging may have been opened. A "Like New" item is suitable to give as a gift.

Very Good — may have minor signs of wear on packaging but item works perfectly and has no damage.

Good — item is in good condition but packaging may have signs of shelf wear/aging or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Acceptable — item is in working order but may show signs of wear such as scratches or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Used — An item that has been opened and may show signs of wear. All specific defects should be noted in the Comments section associated with each item.

Refurbished — A used item that has been renewed or updated and verified to be in proper working condition. Not necessarily completed by the original manufacturer.

New
"New, ships through UPS and DHL. Excellent customer service. Satisfaction guaranteed!! "

Ships from: STERLING HEIGHTS, MI

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
$57.07
Seller since Tue Aug 05 05:02:21 EDT 2014

Feedback rating:

(0)

Condition: New
Hardcover New in new dust jacket. Brand New US edition, 3-5 days shipping!

Ships from: Sausalito, CA

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$70.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$80.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
Page 1 of 1
Showing All
Close
Sort by
Sending request ...

Overview

Dive in for reference where you need it—and learn the intricacies of developing sleeker, more robust, security-enhanced applications in ADO.NET 2.0. Featuring code samples in Microsoft Visual C# and Visual Basic, this reference goes beyond the fundamentals to help professional developers solve sophisticated enterprise development problems.

Discover how to:

  • Examine advanced connectivity options and best practices—including connection pooling, clustered connections, and asynchronous access
  • Use tracing to diagnose application flow and performance issues
  • Resolve concurrency conflicts and implement a data access layer
  • Implement seamless application failover from one Microsoft SQL Server database to another
  • Use managed code and the SQLCLR to create stored procedures, user-defined functions and types, aggregates, and triggers
  • Write effective data-caching code to improve application performance
  • Use the Systems.Transactions namespace to work with Microsoft SQL Server 2005
  • Implement streaming techniques to “chunk” data
  • Apply various methods to extract and modify XML data

PLUS—Get code samples on the Web

Read More Show Less

Product Details

  • ISBN-13: 9780735621411
  • Publisher: Microsoft Press
  • Publication date: 11/30/2005
  • Edition description: 2005 ed.
  • Pages: 528
  • Product dimensions: 7.38 (w) x 8.96 (h) x 1.20 (d)

Meet the Author

Glenn Johnson is a trainer and writer focusing on ASP.NET, ADO.NET, C#, and .NET internals. He is author of Programming Microsoft® ADO.NET 2.0 Applications: Advanced Topics.

Read More Show Less

Table of Contents

Dedication;
Foreword;
Acknowledgments;
Introduction;
Who This Book Is For;
How This Book Is Organized;
System Requirements;
Prerelease Software;
Technology Updates;
Code Samples;
Support for This Book;
Chapter 1: Overview of ADO.NET Disconnected Classes;
1.1 Getting Started with the DataTable Object;
1.2 Using a DataSet Object to Work with Lots of Data;
1.3 Looping Through Data with the DataTableReader;
1.4 Summary;
Chapter 2: Overview of ADO.NET Connected Classes;
2.1 Using Providers to Move Data;
2.2 Summary;
Chapter 3: ADO.NET Trace Logging;
3.1 Setting Up Tracing;
3.2 Summary;
Chapter 4: Advanced Connectivity to the Data Store;
4.1 Building Accurate Connection Strings;
4.2 Connection Pooling;
4.3 Asynchronous Data Access;
4.4 Working with SQL Server Provider Statistics;
4.5 Summary;
Chapter 5: Working with Disconnected Data;
5.1 Understanding Concurrency Issues;
5.2 Designing for Disconnected Data;
5.3 Who’s Afraid of the Big, Bad GUID?;
5.4 Building a Conflict Resolution Screen;
5.5 Summary;
Chapter 6: Working with Relational Disconnected Data;
6.1 Navigating Relationships;
6.2 Creating Constraints;
6.3 Updating Data: The Beginning of the Data Access Layer;
6.4 Summary;
Chapter 7: Working with the Windows Data Grid Control;
7.1 Understanding the DataGridView Control;
7.2 Summary;
Chapter 8: Working with the Web Data Grid Control;
8.1 Understanding the GridView Control;
8.2 GridView Setup;
8.3 Summary;
Chapter 9: Working with the SQLCLR;
9.1 Does the SQLCLR Replace T-SQL?;
9.2 Creating a Stored Procedure Without Visual Studio;
9.3 Creating a Stored Procedure by Using Visual Studio;
9.4 Passing Rowset Data;
9.5 Creating User-Defined Functions;
9.6 Working with User-Defined Aggregates;
9.7 Working with Triggers;
9.8 Working with User-Defined Types;
9.9 Accessing SQLCLR Features from the Client;
9.10 Summary;
Chapter 10: Understanding Transactions;
10.1 What Is a Transaction?;
10.2 Creating a Transaction;
10.3 Setting the Transaction Isolation Level;
10.4 Introducing the System.Transactions Namespace;
10.5 Best Practices;
10.6 Summary;
Chapter 11: Retrieving Metadata;
11.1 Getting Started;
11.2 Retrieving the Metadata Collections;
11.3 Summary;
Chapter 12: Data Caching for Performance;
12.1 Using the SqlDependency Class;
12.2 ASP.NET SQL Cache Invalidation;
12.3 Summary;
Chapter 13: Implementing Security;
13.1 Application Security Overview;
13.2 SQL Server Security;
13.3 ADO.NET Security;
13.4 Summary;
Chapter 14: Working with Large Objects (LOBs, BLOBs, and CLOBs);
14.1 What Are LOBs, BLOBs, and CLOBs?;
14.2 Summary;
Chapter 15: Working with XML Data;
15.1 Introducing XPath and XQuery;
15.2 Why Store XML Data in SQL Server 2005?;
15.3 The xml Data Type;
15.4 Getting Started with the xml Data Type;
15.5 Using XML with ADO.NET;
15.6 Summary;
About the Author;
Additional Resources for Visual Basic Developers;
Additional Resources for C# Developers;
Additional Resources for Web Developers;
Additional Resources for Database Developers;

Read More Show Less

Customer Reviews

Be the first to write a review
( 0 )
Rating Distribution

5 Star

(0)

4 Star

(0)

3 Star

(0)

2 Star

(0)

1 Star

(0)
Sort by: Showing 1 Customer Reviews
  • Anonymous

    Posted Thu Dec 01 00:00:00 EST 2005

    Great GridView and DataGridView Examples! In VB.NET and C#

    I really like the way the author presented the topics in this book. I'm a VB.NET developer, and I have been looking for ways to display and upload pictures, using the new GridView control. This book has does it. I hope to see more books from this author.

    Was this review helpful? Yes  No   Report this review
Sort by: Showing 1 Customer Reviews

If you find inappropriate content, please report it to Barnes & Noble
Why is this product inappropriate?
Comments (optional)