JDBC and ORM Flashcards
1
Q
What does JDBC stand for?
A
Java Database Connectivity
2
Q
What is a connection?
A
A reference to a particular database server
3
Q
What is a statement?
A
A representation of an indivudal SQL query
4
Q
What is a result set?
A
The set of result rows returned by an SQL query
5
Q
What is a driver?
A
Code that knows how to communicate with database server
6
Q
What are the three types of statements?
A
Statement
Prepared Statement
Callable Statement