Download presentation
Presentation is loading. Please wait.
Published byBarnaby Shelton Modified over 9 years ago
1
Chapter 12: Using ADO.NET 2.0 Programming with Microsoft Visual Basic 2005, Third Edition
2
2 Databases Lesson A Objectives Define the terms used when talking about databases Connect an application to a database Bind table and field objects to controls Explain the purpose of the DataSet, BindingSource, TableAdapter, and BindingNavigator objects
3
3 Programming with Microsoft Visual Basic 2005, Third Edition Databases Lesson A Objectives (continued) Access the records in a dataset Move the record pointer
4
4 Programming with Microsoft Visual Basic 2005, Third Edition Previewing the Trivia Game Application Go to Run command on Windows Start menu Browse to the VB2005\Chap12 folder Open the Trivia Game.exe file Trivia Game application user interface appears
5
5 Programming with Microsoft Visual Basic 2005, Third Edition Previewing the Trivia Game Application (continued) Figure 12-1: Trivia Game application
6
6 Programming with Microsoft Visual Basic 2005, Third Edition Database Terminology Database: organized collection of related information Relational database –Database that stores information in tables –Each column in a table represents a field –Each row in a table represents a record Primary key: field uniquely identifying a record A two-table database has parent and child tables Foreign key: links child record to parent record
7
7 Programming with Microsoft Visual Basic 2005, Third Edition Database Terminology (continued) Figure 12-2: Example of a one-table relational database
8
8 Programming with Microsoft Visual Basic 2005, Third Edition Database Terminology (continued) Figure 12-3: Example of a two-table relational database
9
9 Programming with Microsoft Visual Basic 2005, Third Edition ADO.NET 2.0 ADO (ActiveX Data Objects).Net 2.0 technology –Connects an application to a database –Allows application to read from and write to database –Connection is closed after dataset is copied or saved Dataset: copy of records application wants to access Opening Employees.mdf in IDE window –Connect the database to an application –Right-click table’s name in Server Explorer window –Click Show Table Data
10
10 Programming with Microsoft Visual Basic 2005, Third Edition ADO.NET (continued) Figure 12-4: Data contained in the tblEmploy table
11
11 Programming with Microsoft Visual Basic 2005, Third Edition Connecting an Application to a Database Create a database connection to access data Data Source Configuration Wizard –Helps you connect an application to a database
12
12 Programming with Microsoft Visual Basic 2005, Third Edition Connecting an Application to a Database (continued) Figure 12-5: Procedure for connecting an application to a database
13
13 Programming with Microsoft Visual Basic 2005, Third Edition Connecting an Application to a Database (continued) Figure 12-12: EmployeesDataSet added to the Data Sources window
14
14 Programming with Microsoft Visual Basic 2005, Third Edition Previewing the Data Contained in a Dataset Right-click the Data Sources window Click Preview Data to open Preview Data dialog box Select the object to preview, then click Preview After previewing the data, click the Close button
15
15 Programming with Microsoft Visual Basic 2005, Third Edition Previewing the Data Contained in a Dataset (continued) Figure 12-14: Data displayed in the Preview Data dialog box
16
16 Programming with Microsoft Visual Basic 2005, Third Edition Binding the Objects in a Dataset Bind dataset objects before viewing contents Binding: connecting a dataset object to a control Bound controls: the connected controls Types of controls used to bind dataset objects –Computer-created control –Existing control
17
17 Programming with Microsoft Visual Basic 2005, Third Edition Binding the Objects in a Dataset (continued) Figure 12-15: Ways to bind the objects in a dataset
18
18 Programming with Microsoft Visual Basic 2005, Third Edition Having the Computer Create a Bound Control Impact of dragging dataset object to form –Computer creates control (indicated by icon) –Dataset object is automatically bound to control Example –Drag tblEmployee table object to form –DataGridView control displays tabular data –Rows represent records, columns represent fields Use list arrow to change control linked to object
19
19 Programming with Microsoft Visual Basic 2005, Third Edition Having the Computer Create a Bound Control (continued) Figure 12-17: Result of clicking the tblEmploy table object’s list arrow
20
20 Programming with Microsoft Visual Basic 2005, Third Edition Having the Computer Create a Bound Control (continued) Figure 12-20: Illustration of the relationships among the database, the objects in the component tray, and the controls on the form
21
21 Programming with Microsoft Visual Basic 2005, Third Edition The Copy to Output Directory Property Determines the way a file is handled in application Copy always –Default setting of Copy to Output Directory property –Database file copied to project’s bin\Debug folder –Result:.mdf file appears in two different folders –Changes to file in bin\Debug folder are overwritten Copy if newer –Set this property to preserve run-time changes –Copies over file in bin\Debug only if file is not current
22
22 Programming with Microsoft Visual Basic 2005, Third Edition Binding to an Existing Control Method 1 –Drag object from Data Sources window to control Method 2 –Click the control –Set one or more properties in the Properties window Properties to set depends on control being bound –DataGrid: set DataSource and DataMember –ListBox: set DataSource and DisplayMember
23
23 Programming with Microsoft Visual Basic 2005, Third Edition Binding to an Existing Control (continued) Figure 12-23: Result of dragging the field objects to the existing label controls
24
24 Programming with Microsoft Visual Basic 2005, Third Edition Accessing the Records in a Dataset BindingSource object’s Position property –Stores an invisible record pointer –Positions are integer values = 0 Syntax: bindingSourceName.Position Example –Me.TblEmployBindingSource.Position = 4 –Moves record pointer to fifth record in the dataset BindingSource object’s Move methods –Also used to move the record pointer in a dataset
25
25 Programming with Microsoft Visual Basic 2005, Third Edition Accessing the Records in a Dataset (continued) Figure 12-25: Syntax and examples of the BindingSource object’s Move methods
26
26 Programming with Microsoft Visual Basic 2005, Third Edition Summary – Lesson A A relational database stores information in tables Tables comprise rows (records) and columns (fields) Two-table database comprises parent and child tables Two types of id fields: primary key and foreign key Relational database is stored as a file on disk
27
27 Programming with Microsoft Visual Basic 2005, Third Edition Summary – Lesson A (continued) ADO.NET 2.0 connects application to database Dataset: copies of records from database stored in main memory To view dataset objects, they must be bound to a control Use BindingSource object’s Position property or its Move methods to move the record pointer
28
28 Programming with Microsoft Visual Basic 2005, Third Edition Creating Queries Lesson B Objectives Write SQL SELECT statements Create a query using the Query Configuration Wizard Associate a ToolStrip control with a query
29
29 Programming with Microsoft Visual Basic 2005, Third Edition The DataSet Designer Browse to VB2005\Chap12 folder Copy Morgan Industries Solution-DataGrid folder Rename copy as follows: –Morgan Industries Solution-DataGrid-Query Open new file in Visual Studio 2005
30
30 Programming with Microsoft Visual Basic 2005, Third Edition The DataSet Designer (continued) Figure 12-26: Data displayed in the TblEmployDataGridView control
31
31 Programming with Microsoft Visual Basic 2005, Third Edition The DataSet Designer (continued) DataSet Designer controls the display of data –Shows name of table and field objects for dataset –Also shows the name of TableAdapter object TableAdapter object: queries underlying database Query: specifies fields and records to retrieve DataSet Designer puts.xsd file in Solution Explorer.xsd extension indicates XML schema definition file –XML (extensible markup language) –.xsd file type defines tables and fields for a dataset
32
32 Programming with Microsoft Visual Basic 2005, Third Edition The DataSet Designer (continued) Figure 12-27: Three ways to open the DataSet Designer
33
33 Programming with Microsoft Visual Basic 2005, Third Edition The Dataset Designer (continued) Figure 12-28: DataSet Designer
34
34 Programming with Microsoft Visual Basic 2005, Third Edition Structured Query Language Structured Query Language (SQL) –Access/manipulate data stored in databases –Organized as a set of commands Database tasks performed with SQL commands –Storing, retrieving, updating, deleting, and sorting SELECT statement –Most commonly used command in SQL –Specifies the fields and records you want to view –Refine query with WHERE and/or ORDER BY clause
35
35 Programming with Microsoft Visual Basic 2005, Third Edition Structured Query Language (continued) Figure 12-30: Syntax and examples of the SELECT statement (continued)
36
36 Programming with Microsoft Visual Basic 2005, Third Edition Structured Query Language (continued) Figure 12-30: Syntax and examples of the SELECT statement
37
37 Programming with Microsoft Visual Basic 2005, Third Edition Creating a New Query Use TableAdapter Query Configuration Wizard
38
38 Programming with Microsoft Visual Basic 2005, Third Edition Creating a New Query (continued) Figure 12-31: Procedure for creating a query using the TableAdapter Query Configuration Wizard
39
39 Programming with Microsoft Visual Basic 2005, Third Edition Creating a New Query (continued) Figure 12-38: SELECT statement containing the WHERE and ORDER BY clauses
40
40 Programming with Microsoft Visual Basic 2005, Third Edition Allowing the User to Run a Query ToolStrip control –Allows a user to run a query at runtime How to add query feature –Right-click the name of the TableAdapter object –Click Add Query to open Search Criteria Builder dialog –Select the Existing query name radio button –Click the down arrow in list box next to radio button –Click the name of the query in the list –Click OK button to close Search Criteria Builder dialog
41
41 Programming with Microsoft Visual Basic 2005, Third Edition Allowing the User to Run a Query (continued) Figure 12-44: ToolStrip control and object added to the application
42
42 Programming with Microsoft Visual Basic 2005, Third Edition Summary – Lesson B DataSet Designer: used to control the display of fields and records from a database TableAdapter object: connects dataset to underlying database using queries Query: specifies fields and records to retrieve from a database Structured Query Language (SQL): set of commands used to access and manipulate data in a database Select statement: specifies fields/records to view
43
43 Programming with Microsoft Visual Basic 2005, Third Edition The Trivia Game Application Lesson C Objectives Connect a SQL Server database to an application Bind field objects to controls in an interface Position the record pointer in a dataset Determine the number of records in a dataset
44
44 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application Review requirements for Trivia Game application –Display questions along with answers –Allow user to select from set of answers –Track number of incorrect answers –Display information at the end of the game Location of partial solution –VB2005\Chap12\Trivia Game Solution folder First set of tasks –Connect application to Trivia.mdf, define dataset
45
45 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application (continued) Figure 12-47: Completed Add Connection dialog box
46
46 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application (continued) Figure 12-49: TriviaDataSet added to the Data Sources window
47
47 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application (continued) Tasks following definition of the dataset –Preview data that can be displayed –Bind field objects to text boxes Three event procedures to code –xExitButton’s Click event procedure –MainForm’s Load event procedure –xSubmitButton’s Click event procedure Test the application after all code is added
48
48 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application (continued) Figure 12-51: Question field object being dragged to the xQuestionTextBox
49
49 Programming with Microsoft Visual Basic 2005, Third Edition Coding the Trivia Game Application (continued) Figure 12-55: Pseudocode for the xSubmitButton’s Click event procedure
50
50 Programming with Microsoft Visual Basic 2005, Third Edition Summary – Lesson C First step for accessing a database: connect the application to a database Following connection to database, specify field objects that will form a dataset Dataset objects can be bound to interface controls Methods of BindingSource objects enable you to move through records
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.