JDBC Flashcards
Which interface can be used to execute a stored procedure on the database?
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.
JDBC stands for Java Database Connectivity and is used to connect Java applications to databases.
true
In JDBC, the Connection interface is used to send SQL statements to the database.
False (The Statement interface is used to send SQL statements, while Connection is used to establish a database connection.)
The DriverManager class is responsible for loading database drivers and establishing connections.
True
The ResultSet interface in JDBC is used to update the structure of the database tables.
False (ResultSet is used to retrieve and navigate query results, not update table structure.)
JDBC in Java 17 supports try-with-resources to automatically close resources such as Connection, Statement, and ResultSet.
True.