JDBC Flashcards

1
Q

Which interface can be used to execute a stored procedure on the database?

A

The CallableStatement interface in Java is used to execute stored procedures on a database. It is part of the java.sql package and allows calling both stored procedures and functions.

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

JDBC stands for Java Database Connectivity and is used to connect Java applications to databases.

A

true

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

In JDBC, the Connection interface is used to send SQL statements to the database.

A

False (The Statement interface is used to send SQL statements, while Connection is used to establish a database connection.)

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

The DriverManager class is responsible for loading database drivers and establishing connections.

A

True

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

The ResultSet interface in JDBC is used to update the structure of the database tables.

A

False (ResultSet is used to retrieve and navigate query results, not update table structure.)

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

JDBC in Java 17 supports try-with-resources to automatically close resources such as Connection, Statement, and ResultSet.

A

True.

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