Download presentation
Presentation is loading. Please wait.
Published byStanley Fitzgerald Modified over 9 years ago
1
CSCI 3327 Visual Basic Chapter 13: Databases and LINQ UTPA – Fall 2011
2
Objectives In this chapter, you will –Learn the relational database model –Get familiar with using LINQ to retrieve and manipulate data from a database –Know how to add data sources to project, create LINQ to SQL classes, and use data binding to move data between GUI controls and databases –Learn how to create Master/Detail views to select a record and display its details 2
3
Introduction A database is an organized collection of data A database management system (DBMS) provides mechanisms for storing, organizing, retrieving and modifying data Existing DBMSs –Microsoft SQL Server –Oracle –Sybase –IBM DB2 3
4
Introduction (cont'd) PostgreSQL and MySQL are popular open- source DBMSs that can be downloaded and used freely by anyone In this class, we use Microsoft’s free SQL Server Express, which is installed with Visual Basic Express and Visual Studio It can also be downloaded separately from Microsoft (www.microsoft.com/express/sql) 4
5
Relational Database A relational database organizes data simply in tables –rows (also called records) –columns (also called fields, attributes) Primary key: a column (or group of columns) requiring a unique value that cannot be duplicated in other rows A primary key composed of two or more columns is known as a composite key Foreign key—a column in this table that matches the primary-key column in another table 5
6
Example of Table: Employees 6
7
SQL A program might select data from the table to create a query result –E.g., to retrieve the location of each department, in increasing order by Department number –SQL: Select distinct Department, Location From Employees Order By Department 7
8
SQL Results 8
9
Schema A database’s tables, their fields and the relationships among them are collectively known as a database schema In SQL Server, database files have the.mdf (“master data file”) file-name extension –Books.mdf 9
10
Books Database Books database consists of 3 tables –Authors –Titles –AuthorISBN 10
11
Authors 11
12
Titles 12
13
AuthorISBN 13
14
Entity-Relationship Model Entity-Relationship (ER) model –Entity Authors Titles –Relationship There is a one-to-many relationship between a primary key and a corresponding foreign key –E.g., one author can write many books and one book can be written by many authors Others: many-to-many or one-to-one relationship E.g., AuthorISBN 14
15
Example of ER Diagram 15 Books database
16
Querying a Database with LINQ Connect to the Books database Create the LINQ to SQL classes required to use the database Add the Authors table as a data source Drag the Authors table data source onto the Design view to create a GUI for displaying the table’s data Add a few statements to the program to allow it to interact with the database 16
17
GUI To Display Authors Table 17
18
Creating LINQ to SQL Classes Step 1: Creating the Project –Create a new Windows Forms Application named DisplayTable –Change the name of the source file to DisplayAuthorsTable.vb –The IDE updates the Form’s class name to match the source file –Set the Form’s Text property to Display Authors Table 18
19
Creating LINQ to SQL Classes (cont'd) Step 2: Adding a Database to the Project and Connecting to the Database –To interact with a database, you must create a connection to the database. –In Visual Basic 2010 Express, select View > Other Windows > Database Explorer to display the Database Explorer window For a full version of Visual Studio, select View > Server Explorer to display the Server Explorer –Click the Connect to Database icon at the top of the Database Explorer In Choose Data Source dialog, select Microsoft SQL Server Database File from the Data source: list Always use this selection CheckBox, the IDE will use this type of database file by default when you connect to databases Click Continue to display the Add Connection dialog 19
20
Choose Data Source Dialog 20
21
Creating LINQ to SQL Classes (cont'd) In the Add Connection dialog –click the Change… Button to select a database –click Browse… to locate and select the Books.mdf file in the Databases directory –click Test Connection to verify that the IDE can connect to the database through SQL Server Express –click OK to create the connection 21
22
Add Connection Dialog 22
23
Creating LINQ to SQL Classes (cont'd) Step 3: Generating the LINQ to SQL classes –Select the database from which the LINQ to SQL classes will be created –LINQ to SQL uses the database’s schema to help define the classes –Right click the project name in the Solution Explorer and select Add > New Item… to display the Add New Item dialog Select the LINQ to SQL Classes template, name the new item Books.dbml and click the Add button –The Object Relational Designer window will appear Double click the Books.dbml file in the Solution Explorer to open the Object Relational Designer 23
24
Object Relational Designer 24
25
Creating LINQ to SQL Classes (cont'd) Expand the Books.mdf database node in the Database Explorer Expand the Tables node Drag the Authors, Titles and AuthorISBN tables onto the Object Relational Designer The IDE prompts whether you want to copy the database to the project directory Select Yes –The Object Relational Designer will display the tables that you dragged from the Database Explorer Save the Books.dbml file 25
26
Data Bindings Between Controls and the LINQ to SQL Classes Step 1: Adding the Author LINQ to SQL Class as a Data Source To use the LINQ to SQL classes for data binding, you must first add them as a data source. –Select Data > Add New Data Source… to display the Data Source Configuration Wizard. –The LINQ to SQL classes are used to create objects representing the tables in the database, so we’ll use an Object data source. In the dialog, select Object and click Next >. Expand the tree view and ensure that Author is checked. An object of this class will be used as the data source –Click Finish 26
27
27
28
Data Bindings Between Controls and the LINQ to SQL Classes (cont'd) The Authors table in the database is now a data source that can be used by the bindings Open the Data Sources window by selecting Data > Show Data Sources. 28
29
Data Bindings Between Controls and the LINQ to SQL Classes (cont'd) Step 2: Creating GUI Elements –Use the Design view to create a GUI control that can display the Authors table’s data Switch to Design view for the DisplayAuthorsTable class Click the Author node in the Data Sources window—it should change to a drop-down list. –Open the drop-down by clicking the down arrow –Select DataGridView option—this is the GUI control that will be used to display and interact with the data. Drag the Author node from the Data Sources window onto the Form in Design view 29
30
Data Bindings Between Controls and the LINQ to SQL Classes (cont'd) To make the DataGridView occupy the entire window –select the DataGridView –use the Properties window to set the Dock property to Fill 30
31
Data Bindings Between Controls and the LINQ to SQL Classes (cont'd) Step 3: Connecting the BooksDataContext to the AuthorBindingSource –The final step is to connect the BooksDataContext to the AuthorBindingSource, so that the application can interact with the database –Obtain data from the database and to save any changes that the user makes to the data back into the database (see next slide) 31
32
32
33
Data Bindings Between Controls and the LINQ to SQL Classes (cont'd) Step 4: Saving Modifications Back to the Database –If the user modifies the data in the DataGridView, we’d also like to save the modifications in the database –By default, the BindingNavigator’s Save Data Button is disabled –To enable it, right click this Button’s icon and select Enabled –Then, double click the icon to create its Click event handler –Saving the data entered into the DataGridView back to the database is a three-step process (lines 22–24) 33
34
34
35
35
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.