15%
Database Access with Visual Basic .NET

Database Access with Visual Basic .NET

          
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

Whether you are using WinForms, WebForms, or Web Services, Database Access with Visual Basic® .NET, Third Edition, is your practical guide to developing database applications with Visual Basic .NET and ADO.NET. The authors provide real-world solutions to the data-access issues Visual Basic .NET developers face every day and share their secrets for becoming a more effective database programmer using .NET technologies. The book begins by reviewing the fundamentals of database development, Structured Query Language (SQL), and Microsoft SQL Server™ 2000. It then examines how to use the major ADO.NET objects to access data stored in relational databases. Through detailed examples, readers learn how to use properties and methods, as well as more advanced features and techniques. Extensive code listings in Visual Basic .NET illustrate each concept, while business cases apply concepts to real-world applications. The final chapters provide a solid examination of how XML and ASP.NET integrate with ADO.NET to create various types of database applications. A companion Web site provides the code used in the book's myriad examples, all of which is compatible with Visual Basic .NET 2003. Key topic coverage includes: SQL queries and commands Using SQL Server 2000 ADO.NET objects Advanced ADO.NET features and techniques SQL Server and OLEDB, as well as ODBC .NET Data Providers Using Visual Studio .NET Data Projects for managing SQL Scripts Integrating XML with ADO.NET Developing Web-based database applications with ASP.NET Web services and middle-tier objects Database Access with Visual Basic® .NET, Third Edition, equips VB developers with the knowledge and skills needed to build a powerful new generation of database applications in less time using .NET technologies. 0672323435B01092003

Table of Contents:
Preface. 1. Database Basics. What Is a Database? What Is a Database Platform? Business Cases. Business Case 1.1: Introducing Jones Novelties, Incorporated. Tables and Fields. Designing Your Database. Business Case 1.2: Designing Tables and Relationships. Manipulating Data with Objects. Data Types. Creating a Database Schema. Using Visual Studio to Create a Database. Designating Indexes and the Primary Key. Creating Database Diagrams. Using Microsoft Visio to View and Alter a Database Schema. Relationships. Using Referential Integrity to Maintain Consistency. Testing Referential Integrity Constraints, Using Server Explorer. Cascading Updates and Cascading Deletes. Normalization. One-to-One Relationships. One-to-Many Relationships. Many-to-Many Relationships. Creating a User Interface in a Windows Forms Application. Connecting to a Database and Working with Records. Creating a Data Browser Application. Performing Binding Programmatically. About Data-Aware Controls in .NET. Updating Records in the Data Browser Application. Creating New Records in a Data-Bound Form. Deleting Records from a Data-Bound Form. Validating Data Entry in a Data-Bound Form. Validation at the Database Engine Level. Summary. Questions and Answers. 2. Structured Query Language Queries and Commands. What is a Query? Testing Queries with the Server Explorer. Retrieving Records with the SELECT Clause. Designating a Record Source with the FROM Clause. Specifying Criteria with the WHERE Clause. Operators in WHERE Clauses. Sorting Results with ORDER BY. Sorting in Descending Order. Sorting on Multiple Fields. Displaying the Top or Bottom of a Range with TOP. Creating Top Percentage Queries. Joining Related Tables in a Query. Expressing a Join in SQL. Using Outer Joins to Return Additional Data. Performing Calculations in Queries. Aliasing Field Names with AS. Queries That Group and Summarize Data. Using HAVING to Provide Criteria for Grouped Queries. The SUM Function. Other SQL Aggregate Functions. Union Queries. Subqueries. Manipulating Data with SQL. Update Commands. Delete Commands. Insert Commands. Creating Tables with SELECT INTO. Using Data Definition Language. Creating Database Elements with CREATE. Adding Constraints to Tables. Creating Indexes with CREATE INDEX. Deleting Tables and Indexes with DROP. Modifying a Tables Definition with ALTER. Summary. Questions and Answers. 3. Getting Started with SQL Server 2000. Setting Up and Running Microsoft SQL Server 2000. Determining Installation Requirements for SQL Server 2000. Installing SQL Server 2000. Starting and Stopping SQL Server with SQL Service Manager. Controlling the Way SQL Server Starts Up. Getting Started with SQL Server 2000: The Basics. Running SQL Server Enterprise Manager. Creating a Database with SQL Enterprise Manager. Creating Tables in a SQL Server Database. Using SQL Query Analyzer to Access a Database. Using Database Views to Control Access to Data. Creating and Running Stored Procedures. Displaying the Text of an Existing View or Stored Procedure. Creating Triggers. Business Case 3.1: Creating a Trigger That Enables Soundalike Searches. Managing Users and Security in SQL Server Enterprise Manager. Applying Security Attributes in SQL Query Analyzer. Removing Objects from the Database Business Case 3.2: Generating an SQL Script That Creates a Database. Summary. Questions and Answers. 4. ADO.NETData Providers. Overview of ADO.NET. Motivation and Philosophy. ADO.NET Versus Classic ADO (2.x). ADO.NET Objects Within the .NET Framework. Application Interfaces. Overview of .NET Data Provider Objects. SqlClient. Oledb. Odbc. Core Objects. The Connection Object. The Command Object. Using the Command Object with Parameters and Stored Procedures. Executing the Commands. The DataReader Object. Using the Connection and Command Design-Time Components. Other Data Provider Objects. Business Case 4.1: Writing a Routine to Archive Old Orders by Year. Summary. Questions and Answers. 5. ADO.NETThe DataSet. Applications and Components of the DataSet. Populating and Manipulating the DataSet. Defining DataTable Schemas. Adding Data to a DataTable. Updating the DataSet. Accessing Data from a DataTable. Table Relations. Table Constraints. Using the DataSet Component. Summary. Questions and Answers. 6. ADO.NETThe DataAdapter. Populating a DataSet from a Data Source. Updating the Data Source. Setting the Update Commands. Business Case 6.1 Combining Multiple Related Tables. Summary. Questions and Answers. 7. ADO.NETAdditional Features and Techniques. Detecting Concurrency Conflicts. Table and Column Mappings. DataViews. Business Case 7.1: Viewing Data Combined from Different Sources. Strongly Typed DataSets. Summary. Questions and Answers. 8. Visual Studio.NET Database Projects. Creating a Database Project. Database References. Scripts. Create Scripts. Change Scripts. Running the Scripts. Command Files. Queries. Summary. Questions and Answers. 9. XML and .NET. An Overview of XML. The XML Family of Technologies. XML and Data Access. XML Classes in .NET. Working with the Document Object Model. Working with XPATH. Extending SQL Server with SQLXML 3.0 and IIS. Installing and Configuring SQLXML 3.0. Configuration Results. Using XML, XSLT, and SQLXML to Create a Report. Summary. Questions and Answers. 10. ADO.NET and XML. Basic Reading and Writing of XML. Reading XML. Writing XML. Diffgrams. Business Case 10.1: Preparing XML Files for Business Partners. Creating an XmlReader from a Command Object. The XmlDataDocument Object. Summary. Questions and Answers. 11. WebForms: Database Applications with ASP.NET. An Overview of ASP.NET. HTML Controls Versus Server Controls. Additional Highlights of ASP.NET. Accessing a Database Through ASP.NET. Adding the ASPNET User to the SQL Server Logins. TRUSTED_CONNECTION in Action. Working with the DataGrid. Improving the Performance of ASP.NET Database Applications Through Stored Procedures. Summary. Questions and Answers. 12. Web Services and Middle-Tier Technologies. Using the Middle Tier to Provide Presentation Logic. Using Data in the Middle Tier. Creating Reusable Middle-Tier Components. Using the Component from Another Application. Exposing Objects Through Web Services. Exposing an Existing Object Through a Web Service. Accessing Web Services Programmatically. Putting It All Together. Summary. Questions and Answers. Index. 0672323435T01242003


Best Sellers


Product Details
  • ISBN-13: 9780672323430
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison-Wesley Educational Publishers Inc
  • Depth: 32
  • Height: 229 mm
  • No of Pages: 464
  • Series Title: kaleidoscope (SAMS)
  • Weight: 948 gr
  • ISBN-10: 0672323435
  • Publisher Date: 19 Feb 2003
  • Binding: Paperback
  • Edition: 3 SUB
  • Language: English
  • Returnable: Y
  • Spine Width: 29 mm
  • Width: 194 mm


Similar Products

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

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Database Access with Visual Basic .NET
Pearson Education (US) -
Database Access with Visual Basic .NET
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.

Database Access with Visual Basic .NET

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


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA