JDBC Flashcards
1
Q
JDBC stands for
A
Java Database Connectivity
2
Q
JDBC meaning
A
simple API for connecting Java applications to multiple databases that lets one translate between the databases and Java application
3
Q
JDBC driver
A
set of classes that interfaces with a specific databse engine
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
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