Details

Practical Database Programming with Visual Basic.NET


Practical Database Programming with Visual Basic.NET


2. Aufl.

von: Ying Bai

88,99 €

Verlag: Wiley
Format: PDF
Veröffentl.: 04.05.2012
ISBN/EAN: 9781118247891
Sprache: englisch
Anzahl Seiten: 896

DRM-geschütztes eBook, Sie benötigen z.B. Adobe Digital Editions und eine Adobe ID zum Lesen.

Beschreibungen

Practical Database Programming <i>with</i> Visual Basic.NET <p><b>The most up-to-date Visual Basic.NET programming textbook—covering both fundamentals and advanced-level programming techniques—complete with examples and solutions</b> <p>Visual Basic.NET (VB.NET) is an object-oriented computer programming language that can be viewed as an evolution of the classic Visual Basic (VB), which is implemented on the .NET Framework. Microsoft currently supplies two major implementations of Visual Basic: Microsoft Visual Studio (which is commercial software) and Microsoft Visual Studio Express (which is free of charge). <p>Forgoing the large amounts of programming codes found in most database programming books, <i>Practical Database Programming with Visual Basic.NET </i>shows students and professionals both how to develop professional and practical database programs in a Visual Basic.NET environment by using Visual Studio.NET Data Tools and Wizards related to ADO.NET 4.0, and how to apply codes that are auto-generated by solely using Wizards. The fully updated <i>Second Edition</i>: <ul><li>Covers both fundamentals and advanced database programming techniques </li> <li>Introduces three popular database systems with practical examples including MS Access, SQL Server 2008, and Oracle</li> <li>Features more than fifty sample projects with detailed illustrations and explanations to help students understand key techniques and programming technologies</li> <li>Includes downloadable programming codes and exercise questions </li></ul> <p>This book provides undergraduate and graduate students as well as database programmers and software engineers with the necessary tools to handle the database programming issues in the Visual Studio.NET environment.
Preface xxv <p>Acknowledgments xxvii</p> <p><b>Chapter 1 Introduction 1</b></p> <p>Outstanding Features about This Book 2</p> <p>Who This Book Is For 2</p> <p>What This Book Covers 2</p> <p>How This Book Is Organized and How to Use This Book 5</p> <p>How to Use the Source Code and Sample Databases 6</p> <p>Instructors and Customers Supports 8</p> <p><b>Chapter 2 Introduction to Databases 10</b></p> <p>2.1 What Are Databases and Database Programs? 11</p> <p>2.2 Develop a Database 13</p> <p>2.3 Sample Database 14</p> <p>2.4 Identifying Keys 17</p> <p>2.5 Define Relationships 19</p> <p>2.6 ER Notation 21</p> <p>2.7 Data Normalization 22</p> <p>2.8 Database Components in Some Popular Databases 26</p> <p>2.9 Create Microsoft Access Sample Database 34</p> <p>2.10 Create Microsoft SQL Server 2008 Sample Database 44</p> <p>2.11 Create Oracle 11g XE Sample Database 61</p> <p>2.12 Chapter Summary 87</p> <p><b>Chapter 3 Introduction to ADO.NET 91</b></p> <p>3.1 The ADO and ADO.NET 91</p> <p>3.2 Overview of ADO.NET 93</p> <p>3.3 The Architecture of ADO.NET 94</p> <p>3.4 The Components of ADO.NET 95</p> <p>3.5 Chapter Summary 145</p> <p><b>Chapter 4 Introduction to Language Integrated Query (LINQ) 149</b></p> <p>4.1 Overview of Language Integrated Query 149</p> <p>4.2 Introduction to LINQ Query 161</p> <p>4.3 The Architecture and Components of LINQ 164</p> <p>4.4 LINQ to Objects 168</p> <p>4.5 LINQ to DataSet 179</p> <p>4.6 LINQ to SQL 197</p> <p>4.7 LINQ to Entities 210</p> <p>4.8 LINQ to XML 215</p> <p>4.9 Visual Basic.NET Language Enhancement for LINQ 227</p> <p>44.10 Chapter Summary 236</p> <p><b>Chapter 5 Data Selection Query with Visual Basic.NET 241</b></p> <p><b>Part I Data Query with Visual Studio.NET Design Tools and Wizards 242</b></p> <p>5.1 A Completed Sample Database Application Example 242</p> <p>5.2 Visual Studio.NET Design Tools and Wizards 245</p> <p>5.3 Query Data from SQL Server Database Using Design Tools and Wizards 257</p> <p>5.4 Add and Utilize Visual Studio Wizards and Design Tools 265</p> <p>5.5 Query and Display Data using the DataGridView Control 268</p> <p>5.6 Use DataSet Designer to Edit the Structure of the DataSet 272</p> <p>5.7 Bind Data to the Associated Controls in LogIn Form 274</p> <p>5.8 Develop Codes to Query Data Using the Fill() Method 278</p> <p>5.9 Use Return a Single Value to Query Data for LogIn Form 281</p> <p>5.10 Develop the Codes for the Selection Form 284</p> <p>5.11 Query Data from the Faculty Table for the Faculty Form 286</p> <p>5.12 Develop Codes to Query Data from the Faculty Table 289</p> <p>5.12.1 Develop Codes to Query Data Using the TableAdapter Method 289</p> <p>5.12.2 Develop Codes to Query Data Using the LINQ to DataSet Method 291</p> <p>5.13 Display a Picture for the Selected Faculty 292</p> <p>5.14 Query Data from the Course Table for the Course Form 295</p> <p>5.15 Develop Codes to Query Data for the Course Form 300</p> <p>5.16 Query Data from Oracle Database Using Design Tools and Wizards 304</p> <p><b>Part II Data Query with Runtime Objects 311</b></p> <p>5.17 Introduction to Runtime Objects 312</p> <p>5.18 Query Data from Microsoft Access Database Using Runtime Object 315</p> <p>5.19 Query Data from SQL Server Database Using Runtime Object 349</p> <p>5.20 Query Data from Oracle Database Using Runtime Object 384</p> <p>5.21 Chapter Summary 411</p> <p><b>Chapter 6 Data Inserting with Visual Basic.NET 417</b></p> <p><b>Part I Data Inserting with Visual Studio.NET Design Tools and Wizards 418</b></p> <p>6.1 Insert Data into a Database 418</p> <p>6.2 Insert Data into the SQL Server Database Using a Sample Project InsertWizard 420</p> <p>6.3 Insert Data into the Oracle Database Using a Sample Project InsertWizardOracle 441</p> <p><b>Part II Data Insertion with Runtime Objects 442</b></p> <p>6.4 The General Runtime Objects Method 442</p> <p>6.5 Insert Data into the SQL Server Database Using the Runtime Object Method 444</p> <p>6.6 Insert Data into the Microsoft Access Database Using the Runtime Objects 453</p> <p>6.7 Insert Data into the Oracle Database Using the Runtime Objects 461</p> <p>6.8 Insert Data into the Database Using Stored Procedures 471</p> <p>6.9 Insert Data into the Database Using the LINQ to DataSet Method 486</p> <p>6.10 Chapter Summary 488</p> <p><b>Chapter 7 Data Updating and Deleting with Visual Basic.NET 493</b></p> <p><b>Part I Data Updating and Deleting with Visual Studio.NET Design Tools and Wizards 494</b></p> <p>7.1 Update or Delete Data Against Databases 495</p> <p>7.2 Update and Delete Data for Microsoft SQL Server Database 498</p> <p>7.3 Update and Delete Data for Oracle Database 511</p> <p>7.4 Update and Delete Data for Microsoft Access Database 512</p> <p><b>Part II Data Updating and Deleting with Runtime Objects 512</b></p> <p>7.5 The Runtime Objects Method 513</p> <p>7.6 Update and Delete Data for SQL Server Database Using the Runtime Objects 514</p> <p>7.7 Update and Delete Data for Oracle Database Using the Runtime Objects 520</p> <p>7.8 Update and Delete Data Against Database Using Stored Procedures 528</p> <p>7.9 Chapter Summary 554</p> <p><b>Chapter 8 Accessing Data in ASP.NET 559</b></p> <p>8.1 What Is the .NET Framework? 560</p> <p>8.2 What Is ASP.NET? 561</p> <p>8.3 Develop ASP.NET Web Application to Select Data from SQL Server Databases 566</p> <p>8.4 Develop ASP.NET Web Application to Insert Data into SQL Server Databases 598</p> <p>8.5 Develop Web Applications to Update and Delete Data in SQL Server Databases 604</p> <p>8.6 Develop ASP.NET Web Applications with LINQ to SQL Query 618</p> <p>8.7 Develop ASP.NET Web Application to Select Data from Oracle Databases 628</p> <p>8.8 Develop ASP.NET Web Application to Insert Data into Oracle Databases 636</p> <p>8.9 Develop ASP.NET Web Application to Update and Delete Data in Oracle Databases 642</p> <p>8.10 Chapter Summary 653</p> <p><b>Chapter 9 ASP.NET Web Services 657</b></p> <p>9.1 What Are Web Services and Their Components? 658</p> <p>9.2 Procedures to Build a Web Service 659</p> <p>9.3 Build ASP.NET Web Service Project to Access SQL Server Database 666</p> <p>9.4 Build ASP.NET Web Service Project to Insert Data into SQL Server Database 714</p> <p>9.5 Build ASP.NET Web Service to Update and Delete Data for SQL Server Database 762</p> <p>9.6 Build Windows-Based Web Service Clients to Consume the Web Services 783</p> <p>9.7 Build Web-Based Web Service Clients to Consume the Web Services 793</p> <p>9.8 Build ASP.NET Web Service Project to Access Oracle Database 804</p> <p>9.9 Build Web Service Client Projects to Consume the Web Service 819</p> <p>9.10 Build ASP.NET Web Service Project to Insert Data into Oracle Database 820</p> <p>9.11 Build Web Service Client Projects to Consume the Web Service 836</p> <p>9.12 Build ASP.NET Web Service to Update and Delete Data for the Oracle Database 838</p> <p>9.13 Build Web Service Client Projects to Consume the Web Service 855</p> <p>9.14 Chapter Summary 856</p> <p>Homework 857</p> <p>Index 860</p> <p>About the Author 868</p>
<p><b>YING BAI, P<small>H</small>D,</b> is a Professor in the Department of Computer Science and Engineering at Johnson C. Smith University where he received the Grantsperson of the Year Award in 2009. A former senior software engineer in the field of automatic control and testing equipment, Dr. Bai is a Senior Member of IEEE and a member of ACM, and has published ten books and numerous papers on software engineering, interface programming, and fuzzy logic control.
<p><b>The most up-to-date Visual Basic.NET programming textbook—covering both fundamentals and advanced-level programming techniques—complete with examples and solutions</b> <p>Visual Basic.NET (VB.NET) is an object-oriented computer programming language that can be viewed as an evolution of the classic Visual Basic (VB), which is implemented on the .NET Framework. Microsoft currently supplies two major implementations of Visual Basic: Microsoft Visual Studio (which is commercial software) and Microsoft Visual Studio Express (which is free of charge). <p>Forgoing the large amounts of programming codes found in most database programming books, <i>Practical Database Programming with Visual Basic.NET </i>shows students and professionals both how to develop professional and practical database programs in a Visual Basic.NET environment by using Visual Studio.NET Data Tools and Wizards related to ADO.NET 4.0, and how to apply codes that are auto-generated by solely using Wizards. The fully updated <i>Second Edition</i>: <ul><li>Covers both fundamentals and advanced database programming techniques </li> <li>Introduces three popular database systems with practical examples including MS Access, SQL Server 2008, and Oracle</li> <li>Features more than fifty sample projects with detailed illustrations and explanations to help students understand key techniques and programming technologies</li> <li>Includes downloadable programming codes and exercise questions </li></ul> <p>This book provides undergraduate and graduate students as well as database programmers and software engineers with the necessary tools to handle the database programming issues in the Visual Studio.NET environment.

Diese Produkte könnten Sie auch interessieren:

Domain Architectures
Domain Architectures
von: Daniel J. Duffy
PDF ebook
31,99 €