close menu
Bookswagon-24x7 online bookstore
close menu
My Account
Essential ADO.NET: (Developmentor Series (Dm))

Essential ADO.NET: (Developmentor Series (Dm))

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

"Essential ADO.NET is a comprehensive guide for developers of data-aware applications who want to transition to Microsoft's new .NET data access architecture. If you want to dig deep into the how's and why's of ADO.NET, this book will prove to be a worthy guide." Omri Gazitt, Product Manager of ADO.NET and Product Unit Manager, XML, Microsoft"Bob Beauchemin packs a career's worth of knowledge into ten well-organized chapters, each one dense with information and insights. If you work with databases on Windows, buy this book." David Chappell, Principal of Chappell & AssociatesMicrosoft's ADO.NET enables Windows-based applications to access many types of databases from a variety of different vendors. This technology offers the advantage of cross-database flexibility that is essential for Internet and distributed-computing success.Essential ADO.NET presents a thorough explanation of ADO.NET, exploring in depth the capabilities of classes, interfaces, properties, and methods. This book also examines the structure of data and demonstrates the ways in which ADO.NET can solve data access challenges. In particular, the discussion focuses on how ADO.N ET effectively balances the need for generic functionality with efficiency, and how it is specifically designed to address today's need for scalability, concurrency, and robustness. A convenient reference for programmers moving from other data access APIs, including OLE DB, ADO, ODBC, and JDBC, Essential ADO.NET correlates classes and functions from these other APIs to those of ADO.NET.You will find practical information on:How the ADO.NET model can be used to access relational data stores The DataSet class for in-memory data representation How ADO.NET handles concurrency conflict-resolution problems Guidelines for deciding when to use an online stream (DataReader) or offline cache (DataSet) How to map database information using ASP.NET WebForm How ADO.NET integrates relational data storage and XML representation with Microsoft's SQL ServerEssential ADO.NET is the most complete source of information for this crucial piece of the new Microsoft platform. Whether you are new to this application or have used it before, this book will help you to understand and get the most out of ADO.NET. 0201758660B05132002

Table of Contents:
Foreword by Tim Ewald. Foreword by Richard Grimes. Preface. Acknowledgments. 1. Data: Models, Applications, and APIs. Information, Data Modeling, and Databases. Database and API Fundamentals. The Relational Model. Relational Design Rules. Benefits of the Relational Model. Relational Model Support in ADO.NET. Hierarchies, Objects, and Hybrids. Modern Nonrelational Data. Multidimensional Data. Nonrelational Data and ADO.NET. XML and the Infoset. XML, Databases, and Universal Data Representation. Data-centric Application Models. Evolution of Data Access APIs. Where Are We? 2. ADO.NET Basics. Data Access and the .NET Architecture. Two Patterns of Data Access. Connected Mode. OleDb and SqlClient Data Providers. Writing Generic Data Access Code with ADO.NET Data Providers. Cursors in the Data Provider Model. Disconnected Mode and the DataSet. The XML APIs in .NET. Streaming XML. XML Schemas. The XmlDocument, XPath, and XPathNavigators. Mixing XML and Data Providers. Layout of the Managed Data Classes. Where Are We? 3. The Connected Model: Streaming Data Access. .NET Data Providers and the Connected Model. Connection Classes. Connection Pooling. Metadata Methods. Commands. Command Behaviors. Using Parameters. Command Preparation, Cancellation, Timeouts, and Cleanup. Streaming Data through a DataReader. Reading Column Values through IDataRecord. Handling Large Data Columns. Error Handling. Using Transactions. Distributed Transactions. How Connection Pooling Works. How Declarative Transactions Work. Permission Classes. Database Security. Where Are We? 4. The DataSet Class: Sets of Relational Data. DataSets. DataSet as an In-memory Database. What Can You Do with a DataSet? The DataSet Object Model. DataColumns, DataRows, and DataTables. DataTable and Its Uses. DataRows. Keys, Relations, and Constraints. Navigating through Relationships: Select and Find. Adding, Retrieving, Changing, and Deleting Rows. Combining Changes. Merging DataSets. DataRow States and Versions. Rules and Relationships. Error Handling. Events. DataSets and Nonrelational Types. Defining an Information Schema. Where Are We? 5. DataAdapters: Synchronizing Databases and Datasets. Optimistic Concurrency. DataAdapter Classes. Populating a DataSet from a Managed Provider. Using Fill with Schema and Mapping Information. Error Handling during DataAdapter.Fill. How DataAdapter.Fill Works. ADO Integration in OleDbDataAdapter. Updating a Database through DataAdapter. The CommandBuilder Class. Coding Update Logic Directly. How Update Works. Controlling Updates. The DataSet Event Model. Refreshing DataSet Using Update and Merge. Writing General Customized Commands. The ADOX CommandBuilder. Building a Batch Update Command. DataSets and Nonrelational Data Types Revisited. Should You Use DataSet or DataReader? Where Are We? 6. Data Binding: ADO.NET and Graphical User Interfaces. Windows Forms and Web Forms. Patterns of Data Presentation. Using Databound Controls. Web Forms Data Binding Types. Anatomy of Databound Control Types. Binding to a DataReader. Data Binding with DataSets. DataViews and Common Transformations. Table and Column Mappings. Editable List Controls: DataList and DataGrid. DataList. DataGrid. Nonrelational Data and DataViews. Integrating Visual Studio. Server Explorer and Data Toolbox. Controls and Data Forms. Where Are We? 7. XML and Data Access Integration. XML and Traditional Data Access. XML and ADO.NET. Defining a DataSet's Schema. Refining DataSet's XML Schema. Reading XML into DataSet. Writing XML Schemas from DataSet. Microsoft-Specific Annotations. Writing XML Data from DataSet. Serialization, Marshaling, and DataSet. Typed DataSets. The XmlDataDocument Class. XmlDataDocuments and DataSets. XmlDataDocument and DataDocumentXPathNavigator. Why Databases and XML? XML as a Distinct Type. Document Composition and Decomposition. SQL Server, XML, and Managed Data Access. The FOR XML Keyword. OpenXML. The SQLOLEDB Provider. The SqlXml Managed Classes. The SQLXML Web Application. Updategrams. FOR XML in the SQLXMLOLEDB Provider. Bulk Loading. Future Support. Using SQLXML and .NET. Where Are We? 8. Providers: ADO.NET and Data Providers. What Are Your Choices? Staying with OLE DB: A Summary of OLE DB Concepts. Staying with OLE DB: Interaction with the OleDb Data Provider. Main Cotypes and Type Mapping. Accessors. Executing Commands, Returning Results, and Using OpenRowset. Command Results Format and Behaviors. Command Dialects. Hierarchical Data. Updating from a Rowset. Errors. Unsupported Functions. Supported and Unsupported Providers. Writing a Data Provider. Implementing the Connection Class. Specification. Implementation. Specialization. Implementing the Command Class. Specification. Implementation. Specialization. Implementing the DataReader Class. Specification. Implementation. Specialization. Implementing the DataAdapter Class. Specification. Implementation. Specialization. Adding Enhanced Functionality. Implementing XML Infoset Providers. Implementing XmlReader. Implementing XPathNavigator. Implementation Alternatives: Conclusions. Is a Single Universal Data Access Model Possible? Where Are We? 9. Consumers: ADO.NET Migration for Consumers. ADO.NET Migration Paths. ADO.NET for OLE DB Programmers. Cotype Equivalents. Data Provider Transparency. Using Provider-Specific Functionality. Error Handling. System-Supplied Services. System-Supplied Components. Service Providers. Marshaling. A Brief Overview of ADO. ADO.NET for ADO Programmers. Class Equivalences. ADO Connections, Commands, and Transactions. Connections and Connection Strings. Using Transactions. Commands and Command Behaviors. Hierarchical Data. Asynchronous Operations. Properties. ADO.NET Versus ADO Disconnected Model. Class Equivalents. Navigation. What Happened to GetRows in ADO.NET? Updates. Update Statement Creation. Batch Updates. ADO.NET DataSet Extensions. Column and Table Naming. Sorting and Filtering. ADO DB Interoperability. ADO.NET for ODBC Programmers. Handles and Environment. Commands. Fetching Data. Metadata and Schema Information. Errors. ADO.NET for JDBC Programmers. Generic Code. Provider Types. Connection Pooling. Nonrelational Data Types. Object Databases. Other SQL-99 Extensions. Metadata. Transactions. Commands and Behaviors. Executing Queries and Returning Results. Server Cursors. Errors. ADO.NET JDBC Programmers and the Disconnected Model. SQL/J Part 0 and Typed DataSets. Where Are We? 10. ADO.NET and Various Types of Data. Evolution in Data Access. ADO.NET with Server- and File-Based RDBMS. ADO.NET with Homogeneous Hierarchical Data and ORDBMS. ADO.NET and Network Data: Object Graphs, OODBMS, and Network DBMS. ADO.NET and Structured Files, Multidimensional Data,and ORDBMS. ADO.NET Flat Files and Semistructured Files. Where Are We Going? Appendix A. Data Types and Type Mappings. Appendix B. Expression Syntax. Appendix C. Schema Inference Rules. Bibliography. Index. 0201758660T05132002


Best Seller

| | See All

Product Details
  • ISBN-13: 9780201758665
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Height: 235 mm
  • No of Pages: 560
  • Spine Width: 25 mm
  • Width: 188 mm
  • ISBN-10: 0201758660
  • Publisher Date: 11 Jun 2002
  • Binding: Paperback
  • Language: English
  • Series Title: Developmentor Series (Dm)
  • Weight: 835 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Be The First to Review
Essential ADO.NET: (Developmentor Series (Dm))
Pearson Education (US) -
Essential ADO.NET: (Developmentor Series (Dm))
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Essential ADO.NET: (Developmentor Series (Dm))

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    | | See All


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA