Deck 13: Working With Access Databases and Linq

Full screen (f)
exit full mode
Question
A BindingNavigator control displays table data in a row and column format,similar to a spreadsheet.
Use Space or
up arrow
down arrow
to flip the card.
Question
A relational database can contain one or more tables.
Question
A ____ is a single item of information about a person,place,or thing-such as a name,a salary amount,a Social Security number,or a price.

A)table
B)record
C)dataset
D)field
Question
A database file contained in a project is referred to as a logic database file.
Question
Each column in a table represents a record and each row represents a field.
Question
The computer can retrieve data stored in a relational format both quickly and easily,but the data must be displayed in a specific order.
Question
The field used to link a child table to a parent table is known as the ____ in the child table.

A)record
B)foreign key
C)cell
D)primary key
Question
A(n)____ stores information in tables composed of columns and rows,similar to the format used in a spreadsheet.

A)relational database
B)object
C)bound control
D)dataset
Question
If you do not take deliberate steps in your code to handle exceptions,Visual Basic "handles" them for you.
Question
In most tables,one of the fields uniquely identifies each record and is called the ____.

A)exception
B)foreign key
C)primary key
D)cell
Question
When you drag an object from a dataset to an empty area on the form,the computer creates a control and automatically binds the object to it.
Question
A ____ is a copy of the data (database fields and records)that can be accessed by an application.

A)position property
B)child table
C)dataset
D)bound control
Question
A group of related records is called a ____.

A)table
B)field
C)datagrid
D)primary key
Question
The controls connected to an object in a dataset are known as ____.

A)bound controls
B)navigator controls
C)tables
D)fields
Question
Before an application can access the data stored in a database,you need to connect the application to the database.
Question
A(n)____ is a group of related fields that contain all of the necessary data about a specific person,place,or thing.

A)object
B)dataset
C)record
D)exception
Question
A(n)____ is an electronic file that contains an organized collection of related information.

A)field
B)computer database
C)dataset
D)exception
Question
When you drag an object from the Data Sources window to an existing control,the computer does not create a new control; rather,it merely binds the object to the existing control.
Question
Databases created using Microsoft Access are relational databases.
Question
Connecting an object to a control is called ____.

A)linking
B)Order By clause
C)LINQ
D)binding
Question
The ____ clause of LINQ is used to arrange the records in either ascending (the default)or descending order by one or more fields.

A)Order By
B)condition
C)query
D)Where
Question
The ____ object provides the connection between the DataSet and the bound controls on the form.

A)TableAdapter
B)DataGridView
C)BindingSource
D)BindingNavigator
Question
The BindingSource object stores the position of the record pointer in its ____ property.

A)View
B)Position
C)Navigation
D)Cell
Question
Case 1 - MaidToOrder
The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.
<strong>Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.   To create a DataGridView control on the form,you would click on the ____ object in the Data Sources window and drag it to the form.</strong> A)CustomerNum B)InvoiceNum C)CustomerDataSet D)tblCustomer <div style=padding-top: 35px>
To create a DataGridView control on the form,you would click on the ____ object in the Data Sources window and drag it to the form.

A)CustomerNum
B)InvoiceNum
C)CustomerDataSet
D)tblCustomer
Question
You can create a query in Visual Basic 2015 using a language feature called ____.

A)ASP
B)SQL
C)Java
D)Language-Integrated Query
Question
The ____ object can be used to save to the database any changes made to the data contained in the DataSet.

A)TableAdapter
B)TblEmployBindingSource
C)BindingSource
D)DataGridView
Question
A label,text box,or button can be added to the BindingNavigator control by accessing the control's task box and clicking ____.

A)AddNewItem
B)Properties
C)Insert Standard Items
D)Edit Items
Question
An error that occurs while an application is running is called a(n)____.

A)logic error
B)runtime error
C)exception
D)message
Question
The BindingSource object's ____ methods move the record pointer to the first,last,next,or previous record in the dataset.

A)Position
B)View
C)Move
D)Navigation
Question
The tblItems table contains a numeric field named Price.Which of the following statements finds the lowest price for an item and assigns the result to the dblLowPrice variable?

A)Dim dblLowPrice As Double =Min item In Items.DataSet.tblItemsSelect item.Price
B)Dim dblLowPrice As Double =Aggregate item In Items.DataSet.tblItemsSelect item.Price Into Min()
C)Dim dblLowPrice As Double =Select Min item In Items.DataSet.tblItems
D)Dim dblLowPrice As Double =Select Aggregate item In Items.DataSet.tblItemsInto Min()
Question
The intersection of a row and a column in a DataGridView control is called a ____.

A)cell
B)table
C)record
D)key
Question
The way Visual Basic saves changes to a local database file is determined by the file's ____ property.

A)BindingNavigator
B)Position
C)BindingSource
D)Copy to Output Directory
Question
The ____ object is responsible for retrieving the appropriate information from the database and storing it in the DataSet.

A)TableAdapter
B)TblEmployBindingSource
C)BindingSource
D)DataGridView
Question
The ____ property (of the DataGridView)allows you to format a column's data,as well as change the column's width and alignment.

A)AutoSizeColumnsMode
B)DefaultCellStyle
C)BindingNavigator
D)DataGridView
Question
You can use a(n)____ to specify both the records to select in a dataset and the order in which to arrange the records.

A)condition
B)parameter
C)query
D)aggregate operator
Question
If a user is not allowed to add a record,you should deselect the ____ check box within the task list for the DataGridView control.

A)Enable Adding
B)Enable Deleting
C)Edit Items
D)BindingNavigatorAddNewItem
Question
Case 1 - MaidToOrder
The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.
<strong>Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.   You are responsible for connecting the Access database that contains the tblCustomer table to an application.You must first use the Data Source Configuration Wizard to ____.</strong> A)test to see if the database is connected to the application B)add a new data source C)preview the contents of the dataset D)bind the controls to the dataset <div style=padding-top: 35px>
You are responsible for connecting the Access database that contains the tblCustomer table to an application.You must first use the Data Source Configuration Wizard to ____.

A)test to see if the database is connected to the application
B)add a new data source
C)preview the contents of the dataset
D)bind the controls to the dataset
Question
The ____ statement is used for exception handling in a procedure.

A)Try...Catch
B)LINQ
C)Order By
D)aggregate
Question
When an application is running,you can use the ____ control to move from one record to the next in the dataset,as well as to add or delete a record and save any changes made to the dataset.

A)DataSet
B)BindingNavigator
C)TableAdapter
D)BindingSource
Question
Which of the following statements selects all of the records in the tblStudents table?

A)Dim records =Select student In tblStudents
B)Dim records =Select student From StudentsDataSet.tblStudents
C)Dim records =From student In StudentsDataSet.tblStudentsSelect student
D)Dim records =Select student In StudentsDataSet.tblStudentsFrom student
Question
You need to make sure the user of the application can add records but cannot delete any records.Which of the following needs to be performed?

A)Remove the Add new button from the TblCustomerBindingNavigator control.
B)Remove the Delete button from the TblCustomerBindingNavigator control.
C)Remove the Save button from the TblCustomerBindingNavigator control.
D)b and c
Question
Write a LINQ statement to select the records in descending order by the Quantity field.
Question
Write the code needed to include a Try...Catch statement that will handle an error that might occur while saving in an application.Use the following statements in the Try block,along with a message for the user of the Student Data Application that notifies the user the changes have been saved.Provide an error message if an exception occurs.
Me.Validate()
Me.TblStudentBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.StudentsDataSet)
Question
List the five objects that are placed in the component tray when a table object is bound to a DataGridView control.
Question
Relational databases contain multiple tables that relate to each other in some way.How are primary and foreign keys used in such a database?
Question
Write a LINQ statement to select all records.
Question
Write a LINQ statement to select all blue bicycles.Order the bicycles in ascending order by quantity.
Question
Private Sub TblItemsBindingNavigatorSaveItem_Click(ByVal sender As System.Object,ByVal e As System.EventArgs)Handles TblItemsBindingNavigatorSaveItem.Click
Try
Validate()
Me.TblItemsBindingSource
Me.TableAdapterManager.UpdateAll(Me.ItemsDataSet)
MessageBox.Show("Changes saved","Books Galore",
MessageBoxButtons.OK,
MessageBoxIcon.Information)
Catch ex
MessageBox.Show(ex.Message,"Books Galore",
MessageBoxButtons.OK,
MessageBoxIcon.Information)
End
End Sub
Question
Write the statements to move the record pointer to the first and last records in the dataset for the Customer table.
Question
Write a LINQ statement to calculate the total value of the inventory.
Question
Write the statement needed to assign the contents of the records variable to the BindingSource object for the tblBicycle table.Explain why this should be done in an application.
Question
Define the terms "record," "field," and "table." Provide examples of each term when you are defining them.
Question
What are the advantages to storing data in a relational database?
Question
Write the statements to move the record pointer to the previous and next records in the dataset for the Vehicle table.
Question
Which of the following statements will select all invoices of $200.00 or more and arrange the invoices in ascending order by Customer number?

A)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order By invoice.CustomerNumSelect customer
B)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order invoice.CustomerNum AscendingSelect customer
C)Dim records =From CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order invoice.CustomerNumSelect customer
D)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt < 200Order By invoice.CustomerNumSelect customer
Question
What is the DataGridView control and how is it used?
Question
Which of the following statements will calculate a total for all of the unpaid invoices?

A)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerSelect customer.InvoicePaid Into Sum()
B)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerSelect customer.InvoiceAmt Into Sum()
C)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerWhere customer.InvoicePaid.ToUpper = "N"Select customer.InvoiceAmt Into Average()
D)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerWhere customer.InvoicePaid.ToUpper = "N"Select customer.InvoiceAmt Into Sum()
Question
Private Sub btnNext_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnNext.Click
' moves to the next record
TblClientBindingSource.MovePrevious()
End Sub
Private Sub btnPrevious_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnPrevious.Click
' moves to the previous record
TblClientBindingSource.MoveNext()
End Sub
Private Sub btnDisplay_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnDisplay.Click
' displays all clients or
' specific clients for a certain state
Const strPROMPT As String = "Enter one or more " &
"letters.Leave blank to retrieve all records."
Dim strSearch As String
' get user input
strSearch = InputBox(strPROMPT,"Find State").ToUpper
' select the appropriate records
Dim records = ClientDataSet.tblClient
For client.State.ToUpper Like strSearch & "*"
Select
' display the records
TblClientBindingSource.DataSource = records
End Sub
Question
Write the code to calculate the average price of all of the bicycles in inventory.
Question
Write a LINQ statement to select all bicycles with a price greater than $450.Arrange the bicycles in descending order by price.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/60
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 13: Working With Access Databases and Linq
1
A BindingNavigator control displays table data in a row and column format,similar to a spreadsheet.
False
2
A relational database can contain one or more tables.
True
3
A ____ is a single item of information about a person,place,or thing-such as a name,a salary amount,a Social Security number,or a price.

A)table
B)record
C)dataset
D)field
D
4
A database file contained in a project is referred to as a logic database file.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
5
Each column in a table represents a record and each row represents a field.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
6
The computer can retrieve data stored in a relational format both quickly and easily,but the data must be displayed in a specific order.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
7
The field used to link a child table to a parent table is known as the ____ in the child table.

A)record
B)foreign key
C)cell
D)primary key
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
8
A(n)____ stores information in tables composed of columns and rows,similar to the format used in a spreadsheet.

A)relational database
B)object
C)bound control
D)dataset
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
9
If you do not take deliberate steps in your code to handle exceptions,Visual Basic "handles" them for you.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
10
In most tables,one of the fields uniquely identifies each record and is called the ____.

A)exception
B)foreign key
C)primary key
D)cell
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
11
When you drag an object from a dataset to an empty area on the form,the computer creates a control and automatically binds the object to it.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
12
A ____ is a copy of the data (database fields and records)that can be accessed by an application.

A)position property
B)child table
C)dataset
D)bound control
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
13
A group of related records is called a ____.

A)table
B)field
C)datagrid
D)primary key
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
14
The controls connected to an object in a dataset are known as ____.

A)bound controls
B)navigator controls
C)tables
D)fields
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
15
Before an application can access the data stored in a database,you need to connect the application to the database.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
16
A(n)____ is a group of related fields that contain all of the necessary data about a specific person,place,or thing.

A)object
B)dataset
C)record
D)exception
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
17
A(n)____ is an electronic file that contains an organized collection of related information.

A)field
B)computer database
C)dataset
D)exception
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
18
When you drag an object from the Data Sources window to an existing control,the computer does not create a new control; rather,it merely binds the object to the existing control.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
19
Databases created using Microsoft Access are relational databases.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
20
Connecting an object to a control is called ____.

A)linking
B)Order By clause
C)LINQ
D)binding
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
21
The ____ clause of LINQ is used to arrange the records in either ascending (the default)or descending order by one or more fields.

A)Order By
B)condition
C)query
D)Where
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
22
The ____ object provides the connection between the DataSet and the bound controls on the form.

A)TableAdapter
B)DataGridView
C)BindingSource
D)BindingNavigator
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
23
The BindingSource object stores the position of the record pointer in its ____ property.

A)View
B)Position
C)Navigation
D)Cell
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
24
Case 1 - MaidToOrder
The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.
<strong>Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.   To create a DataGridView control on the form,you would click on the ____ object in the Data Sources window and drag it to the form.</strong> A)CustomerNum B)InvoiceNum C)CustomerDataSet D)tblCustomer
To create a DataGridView control on the form,you would click on the ____ object in the Data Sources window and drag it to the form.

A)CustomerNum
B)InvoiceNum
C)CustomerDataSet
D)tblCustomer
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
25
You can create a query in Visual Basic 2015 using a language feature called ____.

A)ASP
B)SQL
C)Java
D)Language-Integrated Query
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
26
The ____ object can be used to save to the database any changes made to the data contained in the DataSet.

A)TableAdapter
B)TblEmployBindingSource
C)BindingSource
D)DataGridView
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
27
A label,text box,or button can be added to the BindingNavigator control by accessing the control's task box and clicking ____.

A)AddNewItem
B)Properties
C)Insert Standard Items
D)Edit Items
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
28
An error that occurs while an application is running is called a(n)____.

A)logic error
B)runtime error
C)exception
D)message
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
29
The BindingSource object's ____ methods move the record pointer to the first,last,next,or previous record in the dataset.

A)Position
B)View
C)Move
D)Navigation
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
30
The tblItems table contains a numeric field named Price.Which of the following statements finds the lowest price for an item and assigns the result to the dblLowPrice variable?

A)Dim dblLowPrice As Double =Min item In Items.DataSet.tblItemsSelect item.Price
B)Dim dblLowPrice As Double =Aggregate item In Items.DataSet.tblItemsSelect item.Price Into Min()
C)Dim dblLowPrice As Double =Select Min item In Items.DataSet.tblItems
D)Dim dblLowPrice As Double =Select Aggregate item In Items.DataSet.tblItemsInto Min()
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
31
The intersection of a row and a column in a DataGridView control is called a ____.

A)cell
B)table
C)record
D)key
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
32
The way Visual Basic saves changes to a local database file is determined by the file's ____ property.

A)BindingNavigator
B)Position
C)BindingSource
D)Copy to Output Directory
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
33
The ____ object is responsible for retrieving the appropriate information from the database and storing it in the DataSet.

A)TableAdapter
B)TblEmployBindingSource
C)BindingSource
D)DataGridView
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
34
The ____ property (of the DataGridView)allows you to format a column's data,as well as change the column's width and alignment.

A)AutoSizeColumnsMode
B)DefaultCellStyle
C)BindingNavigator
D)DataGridView
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
35
You can use a(n)____ to specify both the records to select in a dataset and the order in which to arrange the records.

A)condition
B)parameter
C)query
D)aggregate operator
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
36
If a user is not allowed to add a record,you should deselect the ____ check box within the task list for the DataGridView control.

A)Enable Adding
B)Enable Deleting
C)Edit Items
D)BindingNavigatorAddNewItem
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
37
Case 1 - MaidToOrder
The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.
<strong>Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers.   You are responsible for connecting the Access database that contains the tblCustomer table to an application.You must first use the Data Source Configuration Wizard to ____.</strong> A)test to see if the database is connected to the application B)add a new data source C)preview the contents of the dataset D)bind the controls to the dataset
You are responsible for connecting the Access database that contains the tblCustomer table to an application.You must first use the Data Source Configuration Wizard to ____.

A)test to see if the database is connected to the application
B)add a new data source
C)preview the contents of the dataset
D)bind the controls to the dataset
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
38
The ____ statement is used for exception handling in a procedure.

A)Try...Catch
B)LINQ
C)Order By
D)aggregate
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
39
When an application is running,you can use the ____ control to move from one record to the next in the dataset,as well as to add or delete a record and save any changes made to the dataset.

A)DataSet
B)BindingNavigator
C)TableAdapter
D)BindingSource
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
40
Which of the following statements selects all of the records in the tblStudents table?

A)Dim records =Select student In tblStudents
B)Dim records =Select student From StudentsDataSet.tblStudents
C)Dim records =From student In StudentsDataSet.tblStudentsSelect student
D)Dim records =Select student In StudentsDataSet.tblStudentsFrom student
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
41
You need to make sure the user of the application can add records but cannot delete any records.Which of the following needs to be performed?

A)Remove the Add new button from the TblCustomerBindingNavigator control.
B)Remove the Delete button from the TblCustomerBindingNavigator control.
C)Remove the Save button from the TblCustomerBindingNavigator control.
D)b and c
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
42
Write a LINQ statement to select the records in descending order by the Quantity field.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
43
Write the code needed to include a Try...Catch statement that will handle an error that might occur while saving in an application.Use the following statements in the Try block,along with a message for the user of the Student Data Application that notifies the user the changes have been saved.Provide an error message if an exception occurs.
Me.Validate()
Me.TblStudentBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.StudentsDataSet)
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
44
List the five objects that are placed in the component tray when a table object is bound to a DataGridView control.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
45
Relational databases contain multiple tables that relate to each other in some way.How are primary and foreign keys used in such a database?
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
46
Write a LINQ statement to select all records.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
47
Write a LINQ statement to select all blue bicycles.Order the bicycles in ascending order by quantity.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
48
Private Sub TblItemsBindingNavigatorSaveItem_Click(ByVal sender As System.Object,ByVal e As System.EventArgs)Handles TblItemsBindingNavigatorSaveItem.Click
Try
Validate()
Me.TblItemsBindingSource
Me.TableAdapterManager.UpdateAll(Me.ItemsDataSet)
MessageBox.Show("Changes saved","Books Galore",
MessageBoxButtons.OK,
MessageBoxIcon.Information)
Catch ex
MessageBox.Show(ex.Message,"Books Galore",
MessageBoxButtons.OK,
MessageBoxIcon.Information)
End
End Sub
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
49
Write the statements to move the record pointer to the first and last records in the dataset for the Customer table.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
50
Write a LINQ statement to calculate the total value of the inventory.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
51
Write the statement needed to assign the contents of the records variable to the BindingSource object for the tblBicycle table.Explain why this should be done in an application.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
52
Define the terms "record," "field," and "table." Provide examples of each term when you are defining them.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
53
What are the advantages to storing data in a relational database?
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
54
Write the statements to move the record pointer to the previous and next records in the dataset for the Vehicle table.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
55
Which of the following statements will select all invoices of $200.00 or more and arrange the invoices in ascending order by Customer number?

A)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order By invoice.CustomerNumSelect customer
B)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order invoice.CustomerNum AscendingSelect customer
C)Dim records =From CustomerDataSet.tblCustomerWhere customer.InvoiceAmt > 200Order invoice.CustomerNumSelect customer
D)Dim records =From customer In CustomerDataSet.tblCustomerWhere customer.InvoiceAmt < 200Order By invoice.CustomerNumSelect customer
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
56
What is the DataGridView control and how is it used?
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
57
Which of the following statements will calculate a total for all of the unpaid invoices?

A)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerSelect customer.InvoicePaid Into Sum()
B)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerSelect customer.InvoiceAmt Into Sum()
C)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerWhere customer.InvoicePaid.ToUpper = "N"Select customer.InvoiceAmt Into Average()
D)Dim decTotalUnpaid =Aggregate customer In CustomerDataSet.tblCustomerWhere customer.InvoicePaid.ToUpper = "N"Select customer.InvoiceAmt Into Sum()
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
58
Private Sub btnNext_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnNext.Click
' moves to the next record
TblClientBindingSource.MovePrevious()
End Sub
Private Sub btnPrevious_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnPrevious.Click
' moves to the previous record
TblClientBindingSource.MoveNext()
End Sub
Private Sub btnDisplay_Click(ByVal sender As Object,ByVal e As System.EventArgs)Handles btnDisplay.Click
' displays all clients or
' specific clients for a certain state
Const strPROMPT As String = "Enter one or more " &
"letters.Leave blank to retrieve all records."
Dim strSearch As String
' get user input
strSearch = InputBox(strPROMPT,"Find State").ToUpper
' select the appropriate records
Dim records = ClientDataSet.tblClient
For client.State.ToUpper Like strSearch & "*"
Select
' display the records
TblClientBindingSource.DataSource = records
End Sub
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
59
Write the code to calculate the average price of all of the bicycles in inventory.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
60
Write a LINQ statement to select all bicycles with a price greater than $450.Arrange the bicycles in descending order by price.
Unlock Deck
Unlock for access to all 60 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 60 flashcards in this deck.