What is JDBC driver?

What is JDBC driver?

- The JDBC Driver provided by the JDBC API, is a vendor-specific implementations of the abstract classes.
- The driver is used to connect to the database.
- The Java.sql package that come with JDK, contains of various classes with their behaviours which are defined and the third-party drivers do their actual implementaions.
- The java.sql.Driver interface in their database driver is implemented by the third party vendors.
What are the steps required to execute a query in JDBC?
What are the steps required to execute a query in JDBC? - Register the driver with DriverManager class.....
What is Connection pooling?
What is Connection pooling? - A Connection pooling is a technique of reusing active database connections instead of creating a new connection.....
What are the common tasks of JDBC?
What are the common tasks of JDBC? - Create an instance of a JDBC driver ....
Post your comment