Cantitate/Preț
Produs

Database Access with Visual Basic .Net: kaleidoscope (SAMS)

Autor Jeffrey P. McManus, Jackie Goldstein
en Limba Engleză Paperback – feb 2003
Learn how to implement database technologies in the .NET environment from the experts!
  • Gain a solid understanding of how to use the Visual Studio .NET IDE to employ Windows Forms, WebForms, and Web Services in your database applications.
  • Includes thorough coverage of how XML integrates with ADO.NET.
  • This revision of a best-seller includes proven techniques such as Business Cases that relate topics to practical applications.
Database Access with Visual Basic .NET continues to use techniques developed by Jeffrey McManus that provide solutions to problems faced by developers every day. Since data access is the most used feature in corporate development, it is important for developers to understand the most effective and efficient way to access data using .NET technologies. This book provides clear explanations of how to use ADO.NET to access data stored in relational databases, as well as how XML integrates with ADO.NET. The authors use their years of experience to relate key topics to real-world applications through use of Business Cases that include code listings in Visual Basic .NET. Jeffrey P. McManus is a developer and speaker specializing in Microsoft tools. As a developer, he has specialized in online application development using Internet and client-server technologies. He is the author of four books on database and component technologies, including the best-selling Database Access with Visual Basic 6. Jeffrey regularly speaks at the VBITS/VSLive, European DevWeek, and VBConnections conferences. Jackie Goldstein is President of Renaissance Computer Systems LTD, where he uses his years of experiences in consulting, training, and development for Microsoft technologies. Jackie regularly speaks at VBITS and VSLive, and was invited to be a Subject Matter Expert at the International DeveloperDays Event. In addition, Jackie contributes articles to several journals, magazines, and Web sites.
Citește tot Restrânge

Preț: 29583 lei

Preț vechi: 36981 lei
-20%

Puncte Express: 444

Preț estimativ în valută:
5668 6139$ 4860£

Cartea nu se mai tipărește

Doresc să fiu notificat când acest titlu va fi disponibil:

Preluare comenzi: 021 569.72.76

Specificații

ISBN-13: 9780672323430
ISBN-10: 0672323435
Pagini: 464
Dimensiuni: 192 x 228 x 25 mm
Greutate: 0.78 kg
Ediția:Nouă
Editura: Addison-Wesley Professional
Seria kaleidoscope (SAMS)

Locul publicării:Boston, United States

Descriere

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

Cuprins



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 DatabaseBusiness 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

Notă biografică

Jeffrey P. McManus is a developer specializing in online application development and a popular speaker at conferences such as VBITS, VSLive, and VBConnections. He is a frequent contributor to journals and is the author of four books on database and component technologies and two books on .NET technologies, including Visual Basic® .NET Developer's Guide to ASP.NET, XML, and ADO.NET (Addison-Wesley, 2002).
Jackie Goldstein is the president of Renaissance Computer Systems, a development and consulting company specializing in Microsoft tools and technologies. He also serves as the MSDN Regional Director for Israel and as a Subject Matter Expert for Microsoft Developer Days events. Jackie has many years of experience helping companies evaluate and integrate new technologies, and is a frequent speaker at conferences such as VSLive, TechEd, and VBITS.


0672323435AB01092003

Textul de pe ultima copertă

Whether you are using WinForms, WebForms, or Web Services, " Database Access with Visual Basic(r) .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 commandsUsing SQL Server 2000ADO.NET objectsAdvanced ADO.NET features and techniquesSQL Server and OLEDB, as well as ODBC .NET Data Providers Using Visual Studio .NET Data Projects for managing SQL ScriptsIntegrating XML with ADO.NETDeveloping Web-based database applications with ASP.NETWeb services and middle-tier objects

"Database Access with Visual Basic(r) .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"