Presentation is loading. Please wait.

Presentation is loading. Please wait.

Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Twelve Access Databases and LINQ.

Similar presentations


Presentation on theme: "Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Twelve Access Databases and LINQ."— Presentation transcript:

1 Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Twelve Access Databases and LINQ

2 Objectives After studying this chapter, you should be able to: Define the terms used when talking about databases Connect an application to a Microsoft Access database Bind table and field objects to controls Explain the purpose of the DataSet, BindingSource, TableAdapter, TableAdapterManager, and BindingNavigator objects Microsoft Visual Basic 2010: Reloaded, Fourth Edition2

3 Objectives (cont'd.) Customize a DataGridView control Handle errors using the Try…Catch statement Position the record pointer in a dataset Access the value stored in a field object Query a dataset using LINQ Customize a BindingNavigator control Use the LINQ aggregate methods Microsoft Visual Basic 2010: Reloaded, Fourth Edition3

4 Database Terminology Computer database: electronic file containing an organized collection of related information Relational database: database that stores information in tables composed of columns and rows Field: single item of information Record: group of related fields Table: group of related records Primary key: field that uniquely identifies each record Microsoft Visual Basic 2010: Reloaded, Fourth Edition4

5 Database Terminology (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition5 Figure 12-1: Example of a one-table relational database

6 Database Terminology (cont'd.) Parent table: contains a primary key Child table: contains a foreign key from the parent table to link the tables Foreign key: field in a table that contains the primary key of another table Relational database advantages: –Less redundancy –Fast retrieval –Ability to selectively retrieve data Microsoft Visual Basic 2010: Reloaded, Fourth Edition6

7 Database Terminology (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition7 Figure 12-2: Example of a two-table relational database

8 Connecting an Application to a Microsoft Access Database Microsoft Access database: –Has a file extension of.accdb Must connect an application to the database before the application can access the data Use the Data Source Configuration Wizard to connect to a database Dataset: copy of the fields and records stored in the computer’s internal memory, which the application can access Microsoft Visual Basic 2010: Reloaded, Fourth Edition8

9 Connecting an Application to a Microsoft Access Database (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition9 Figure 12-3: Data contained in the tblEmploy table

10 Connecting an Application to a Microsoft Access Database (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition10 Figure 12-4: How to connect an application to an Access database

11 Connecting an Application to a Microsoft Access Database (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition11 Figure 12-5: Result of running the Data Source Configuration Wizard

12 Connecting an Application to a Microsoft Access Database (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition12 Figure 12-6: How to preview the contents of a dataset

13 Microsoft Visual Basic 2010: Reloaded, Fourth Edition13 Figure 12-7: EmployeesDataSet shown in the Preview Data dialog box

14 Binding the Objects in a Dataset Binding: connecting an object in a dataset to a control on a form Bound controls: controls that are connected to an object in a dataset Can bind an object to: –An existing control in the interface –A control the computer creates for you Microsoft Visual Basic 2010: Reloaded, Fourth Edition14

15 Binding the Objects in a Dataset (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition15 Figure 12-8: How to bind an object in a dataset

16 Having the Computer Create a Bound Control To allow the computer to create a bound control: –Drag the object from the dataset to the form DataGridView control: displays table data in a row and column format Use the list arrow next to an object’s name to change the type of control to be created Microsoft Visual Basic 2010: Reloaded, Fourth Edition16

17 Having the Computer Create a Bound Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition17 Figure 12-9: Icons in the Data Sources window

18 Having the Computer Create a Bound Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition18 Figure 12-10: Result of clicking the tblEmploy table object’s list arrow

19 Having the Computer Create a Bound Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition19 Figure 12-11: Result of clicking the Last_Name filed object’s list arrow

20 Having the Computer Create a Bound Control (cont'd.) BindingNavigator control: –Allows movement to first, last, next, or previous record –Allows direct selection of record by number –Allows you to add or delete a record –Allows you to save changes made to the dataset Five objects are placed in the component tray: –DataSet, BindingSource, TableAdapter, TableAdapterManager, BindingNavigator Microsoft Visual Basic 2010: Reloaded, Fourth Edition20

21 Having the Computer Create a Bound Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition21 Figure 12-12: Result of dragging the table object to the form

22 Having the Computer Create a Bound Control (cont'd.) TableAdapter object: connects the database to the DataSet object DataSet object: stores the information to be accessed from the database TableAdapterManager object: handles saving data to multiple tables in the DataSet BindingSource object: connects the DataSet object to the bound controls on the form Microsoft Visual Basic 2010: Reloaded, Fourth Edition22

23 Having the Computer Create a Bound Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition23 Figure 12-13: Illustration of the relationships among the database, the objects in the component tray, and the bound controls

24 The DataGridView Control DataGridView control: displays data in a row and column format –Each row represents a record –Each column represents a field Cell: the intersection of a row and column DataGridView has a task list used to control its appearance and behavior Microsoft Visual Basic 2010: Reloaded, Fourth Edition24

25 The DataGridView Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition25 Figure 12-14: Task list for a DataGridView control

26 The DataGridView Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition26 Figure 12-15: Purpose of each task in the DataGridView’s task list

27 The DataGridView Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition27 Figure 12-15: Edit Columns dialog box

28 The DataGridView Control (cont'd.) Many properties of DataGridView are listed only in the Properties window AutoSizeColumnsMode property: –Select Fill setting to automatically adjust column widths to exactly fill the display area –Select ColumnHeader setting to adjust column widths based on the header text Microsoft Visual Basic 2010: Reloaded, Fourth Edition28

29 The DataGridView Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition29 Figure 12-17: DataGridView control after setting some of its properties

30 Visual Basic Code DataGridView control allows data to be edited directly within the control to update the database Two event procedures are automatically created in Code Editor window when a table or field object is dragged to the form –MainForm_Load –bindingNavigatorSaveItem_Click MainForm_Load event: –Fill method: TableAdapter object’s method to retrieve data from the database and store it in the dataset Microsoft Visual Basic 2010: Reloaded, Fourth Edition30

31 Microsoft Visual Basic 2010: Reloaded, Fourth Edition31 Visual Basic Code (cont'd.) bindingNavigatorSaveItem_Click event: –Saves any changes made to the dataset –EndEdit method: applies pending changes to the dataset –UpdateAll method: commits the dataset changes to the database Be sure to use error-handling code

32 Visual Basic Code (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition32 Figure 12-18: Code automatically entered in the Code Editor window

33 Handling Errors in the Code Exception: an error that occurs while an application is running VB “handles” errors if the program does not by showing an error message and terminating the application Try…Catch statement: used to trap errors and attempt to handle them –Place code that could cause an exception within the Try block –Catch block is executed if an exception occurs Microsoft Visual Basic 2010: Reloaded, Fourth Edition33

34 Microsoft Visual Basic 2010: Reloaded, Fourth Edition34 Figure 12-19: How to use the Try…Catch statement

35 Handling Errors in the Code (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition35 Figure 12-19: How to use the Try…Catch statement (cont’d.)

36 Handling Errors in the Code (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition36 Figure 12-20: Try…Catch statement entered in the Save Data button’s Click event procedure

37 Handling Errors in the Code (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition37 Figure 12-21: Sample run of the Morgan Industries application

38 Handling Errors in the Code (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition38 BindingNavigator control provides buttons for first, last, previous, and next record and for adding records, deleting records, and saving changes Can also use the control to access a record by its record number

39 The Copy to Output Directory Property Microsoft Visual Basic 2010: Reloaded, Fourth Edition39 Local database file: database file contained in a project Copy to Output Directory property: determines how VB saves changes to a local database file Copy always setting: database file is copied from the project folder to bin\Debug folder each time the application is started –Changes are made only to the bin\Debug copy Copy if newer setting: newer of the two database files (project folder and bin\Debug folder) is saved in bin\Debug folder

40 The Copy to Output Directory Property (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition40 Figure 12-22: How to use the Copy to Output Directory property

41 Binding to an Existing Control Can bind an object in a dataset to an existing control in two ways: –Drag an object in the dataset to a control on the form –Select the control and set properties Properties to bind the control are specific to the control DataSet, BindingSource,TableAdapter, and TableAdapterManager objects are added to the component tray BindingNavigator control is NOT added automatically Microsoft Visual Basic 2010: Reloaded, Fourth Edition41

42 Binding to an Existing Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition42 Figure 12-23: Result of dragging field objects to existing label controls

43 Binding to an Existing Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition43 Figure 12-24: Sample run of a different version of the Morgan Industries application

44 Coding the Next Record and Previous Record Buttons BindingSource object uses an invisible record pointer to track the current record in the dataset Position property: stores position of current record; this position number is zero-relative Move method: moves the record pointer’s position to first, last, previous, or next record in the dataset Microsoft Visual Basic 2010: Reloaded, Fourth Edition44

45 Microsoft Visual Basic 2010: Reloaded, Fourth Edition45 Figure 12-23: How to use the BindingSource object’s Position property

46 Microsoft Visual Basic 2010: Reloaded, Fourth Edition46 Figure 12-26: How to use the BindingSource object’s Move methods

47 Coding the Next Record and Previous Record Buttons (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition47 Figure 12-27: Code entered in the Click event procedures for the Next Record and Previous Record buttons

48 Accessing the Value Stored in a Field Microsoft Visual Basic 2010: Reloaded, Fourth Edition48 Figure 12-28: How to access the value stored in a field object

49 Creating a Query Can arrange records in a dataset in any order Query: specifies the records to select in a dataset Language Integrated Query (LINQ): language used to create a query –Where clause: optional, specifies a condition to limit which records to view –Order By clause: optional, specifies whether to arrange in descending or ascending order Option Infer On: allows computer to infer the data type from the variables in the query Microsoft Visual Basic 2010: Reloaded, Fourth Edition49

50 Creating a Query (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition50 Figure 12-29: How to use LINQ to select and arrange records in a dataset

51 Microsoft Visual Basic 2010: Reloaded, Fourth Edition51 Figure 12-29: How to use LINQ to select and arrange records in a dataset (cont’d.)

52 Microsoft Visual Basic 2010: Reloaded, Fourth Edition52 Figure 12-30: How to assign a LINQ variable’s contents to a BindingSource control Creating a Query (cont’d.)

53 Microsoft Visual Basic 2010: Reloaded, Fourth Edition53 Figure 12-31: LINQ code entered in the Find Last Name button’s Click event procedure

54 Creating a Query (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition54 Figure 12-32: Employees whose last name begins with the letter S

55 Personalizing a BindingNavigator Control You can include other items on the BindingNavigator control: –Buttons, text boxes, or drop-down buttons Microsoft Visual Basic 2010: Reloaded, Fourth Edition55

56 Personalizing a BindingNavigator Control (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition56 Figure 12-33: How to manipulate the items on a BindingNavigator control

57 Personalizing a BindingNavigator Control (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition57 Figure 12-34: Items Collection Editor window

58 Personalizing a BindingNavigator Control (cont’d.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition58 Figure 12-35: DropDownButton added to the BindingNavigator control

59 Using the LINQ Aggregate Operators Aggregate operator: returns a single value from a group of values Most commonly used aggregate operators: –Average, Count, Max, Min, and Sum Microsoft Visual Basic 2010: Reloaded, Fourth Edition59

60 Microsoft Visual Basic 2010: Reloaded, Fourth Edition60 Figure 12-36: How to use the LINQ aggregate operators

61 Using the LINQ Aggregate Methods (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition61 Figure 12-37: Code associated with the three items on the DropDownButton

62 Using the LINQ Aggregate Methods (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition62 Figure 12-37: Code associated with the three items on the DropDownButton (cont’d.)

63 Using the LINQ Aggregate Methods (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition63 Figure 12-37: Code associated with the three items on the DropDownButton (cont’d.)

64 Adding Items to the BindingNavigator Control (cont'd.) Microsoft Visual Basic 2010: Reloaded, Fourth Edition64 Figure 12-38: Average pay rate for part-time employees

65 Creating the Trivia Game application Microsoft Visual Basic 2010: Reloaded, Fourth Edition65 Programming Tutorial 1 Figure 12-40: MainForm for the Trivia Game application

66 Creating the CD Collection application Microsoft Visual Basic 2010: Reloaded, Fourth Edition66 Programming Tutorial 2 Figure 12-50: Preview Data dialog box showing the data stored in the CDDataSet

67 Microsoft Visual Basic 2010: Reloaded, Fourth Edition67 Programming Example Cartwright Industries application Figure 12-55: MainForm in the Cartwright Industries application

68 Microsoft Visual Basic 2010: Reloaded, Fourth Edition68 Summary Can use Visual Basic to access data stored in databases Relational database: stores information in tables composed of fields and records Primary key: field in a database table that uniquely identifies each record Data in a relational database can be displayed in any order, and you can control the amount of information to view

69 Microsoft Visual Basic 2010: Reloaded, Fourth Edition69 Summary (cont'd.) You must connect the application to a database to create a dataset Display dataset information by binding controls to dataset objects TableAdapter : connects a database to a DataSet object BindingSource object: connects a DataSet object to bound controls on a form DataGridView control displays data in row and column format

70 Microsoft Visual Basic 2010: Reloaded, Fourth Edition70 Summary (cont'd.) Use a Try…Catch statement to handle exceptions Database file’s Copy to Output Directory property: determines when and if the file is copied to the project’s bin\Debug folder BindingSource object’s Position property: stores the location of the record pointer in a dataset BindingSource object’s Move methods: used to move the record pointer in a dataset Can access the value stored in a field object in a dataset

71 Summary (cont'd.) Use LINQ to select and arrange records in a dataset LINQ provides Average, Sum, Count, Min, and Max aggregate methods Can include additional items such as text boxes and drop-down buttons on a BindingNavigator control Microsoft Visual Basic 2010: Reloaded, Fourth Edition71


Download ppt "Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Twelve Access Databases and LINQ."

Similar presentations


Ads by Google