For which three objects must a vendor provide implementations in its JDBC driver?
For which three objects must a vendor provide implementations in its JDBC driver?
In the context of JDBC (Java Database Connectivity), vendors must provide implementations for certain key interfaces to enable interaction with a database. These include Connection, Statement, and ResultSet. The Connection interface represents a session with a specific database, the Statement interface is used for executing SQL queries, and the ResultSet interface represents the result set of a query. Thus, these three are essential components that any JDBC driver must implement to facilitate database operations.
Correct
Answer is correct
CDE is the correct answer
C, D and E are correct.
Answer CDE is correct.