Topic 3 Flashcards

1
Q

JDBC

A

Java Database Connectivity, accesses data as rows and columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Data access

A

the process of retrieving and manipulating data from a data source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Examples of data sources

A

relational database servers, text files, spreadsheets and mainframes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Database catalogue

A

refers tot he database system tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

System tables

A

used to store information about the database, tables you created and the structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Metadata

A

describes the content of the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is data?

A

Information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a relational database?

A

a database that is organized into tables, which consists of rows and columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a database?

A

an organized collection of data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the two ways to access a relational database from Java?

A

JDBC and JPA

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

JPA

A

Java Persistence API, accesses data through Java objects using a concept called object-relational mapping(ORM)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Driver

A

knows how to get a connection to their database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

connection

A

knows how to communicate with the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

statement

A

knows how to run the SQL, an object used to submit a query to a database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

resultset

A

knows what was returned by a SELECT query

How well did you know this?
1
Not at all
2
3
4
5
Perfectly