Database Management and SQL Lecture Vocabulary

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/35

flashcard set

Earn XP

Description and Tags

Vocabulary terms and definitions covering database management systems, SQL syntax, and data-bound controls in Visual Studio.

Last updated 4:21 AM on 5/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

36 Terms

1
New cards

Microsoft SQL Server Express Edition

A database software that is automatically installed on your system when you install Visual Studio or Visual Studio Express.

2
New cards

DataGridView control

A control that can display an entire database table in a scrollable grid on an application's form.

3
New cards

Table adapter

A component that connects to a data source and can retrieve data from a table in a data source.

4
New cards

Dataset

A component that gets a copy of a table from the table adapter and keeps the copy of the table in memory.

5
New cards

Row

A complete set of information about a single item in a table.

6
New cards

Binding source

A component that can connect user interface controls directly to a dataset.

7
New cards

Schema definition file

A file, ending with the .xsd.xsd extension, which describes the contents of a dataset.

8
New cards

Details view

A set of individual controls that are bound to the columns in a single row.

9
New cards

Data source

A source of data with which the application can work.

10
New cards

Data-bound control

A user interface control that is connected to a data source.

11
New cards

Database management system (DBMS)

Software specifically designed to store, retrieve, and manipulate large amounts of data in an organized and efficient manner.

12
New cards

Database

A storage location where a database management system stores data.

13
New cards

Identity column

A column that contains unique values that are generated by the DBMS.

14
New cards

Table adapter query

An SQL statement that is stored in a table adapter and can be executed simply by calling a method.

15
New cards

Column

A part of a table that holds an individual piece of information about an item.

16
New cards

Null

The state of a column if it contains no data.

17
New cards

Order By clause

A clause used to sort the results of an SQL Select query.

18
New cards

Table

A collection of related data held in a database.

19
New cards

@@ symbol

The symbol that begins a parameter variable in an SQL statement.

20
New cards

Single quotes

Characters used to enclose strings in SQL, rather than double quotes.

21
New cards

Avg function

An SQL function that calculates the average value in a particular column.

22
New cards

Like operator

An SQL operator used to search for a substring.

23
New cards

%\% symbol

The SQL wildcard character used to represent any sequence of zero or more characters.

24
New cards

Queries

Statements constructed using keywords in SQL.

25
New cards

Select statement

The SQL statement used to retrieve the rows in a table.

26
New cards

Primary key

A column that can be used to identify a specific row in most database tables.

27
New cards

Count function

An SQL function provided for determining the number of rows in a table.

28
New cards

Structured Query Language (SQL)

A standard language for working with database management systems.

29
New cards

DisplayMember property

The property that identifies a column from the table to display in the data-bound control.

30
New cards

DataSource property

The property that identifies the table from which the data-bound control will get its data.

31
New cards

And operator

An SQL operator that requires both search criteria to be true in order for a row to be qualified as a match.

32
New cards

Output folder

The bin/Debug folder where Visual Studio copies the database file when an application runs for the first time.

33
New cards

Fill method

A table adapter method called to ensure that a dataset contains a current copy of the data.

34
New cards

Smart tag

A control feature that pops up a tasks panel with a number of options that can be performed.

35
New cards

Where clause

A clause used with a Select statement to return only the rows that meet specific search criteria.

36
New cards

Not operator

An SQL operator that can be used to disqualify a character pattern in a search criteria.