JDBC Flashcards

1
Q

JDBC stands for

A

Java Database Connectivity

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

JDBC meaning

A

simple API for connecting Java applications to multiple databases that lets one translate between the databases and Java application

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

JDBC driver

A

set of classes that interfaces with a specific databse engine

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

JAR

A

package file format typically used to aggregate many java class files and resources into one file to distribute application software or libraries on the java platform

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

Steps to using JDBC

A
load the JDBC driver
establish the database connection
Create a statement object
execute a query
process the results
close the connection
How well did you know this?
1
Not at all
2
3
4
5
Perfectly