{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

Topic 3 Flashcards

(15 cards)

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