For which three objects must a vendor provide implementations in its JDBC driver? (Choose three.)
For which three objects must a vendor provide implementations in its JDBC driver? (Choose three.)
To create a functional JDBC driver for a database, a vendor must provide implementations for several key objects. These include the Connection object, which manages the connection to the database; the Statement object, which allows for executing SQL queries; and the ResultSet object, which handles the data returned from these queries. Proper implementations of these elements are essential for the driver to facilitate interaction between Java applications and the database.
C and D and E
CDE is the correct answer
C, D and E are correct.