java.sql
Interface Driver
public interface Driver
{
}
• This interface is used to define the methods
which must be implemented by JDBC Driver
• The interface that every driver class must
implement.
• Each driver should supply a class that
implements the Driver interface.
Connect()
• Connection connect(String url, Properties info) throws
SQLException
• Attempts to make a database connection to the given URL.
The driver should return "null" if it realizes it is the wrong
kind of driver to connect to the given URL. This will be
common, as when the JDBC driver manager is asked to
connect to a given URL it passes the URL to each loaded
driver in turn.The driver should throw an SQLException if it
is the right driver to connect to the given URL but has
trouble connecting to the database.
• The java.util.Properties argument can be used to pass
arbitrary string tag/value pairs as connection arguments.
Normally at least "user" and "password" properties should
be included in theProperties object.
getConnection ( )
• Driver.getConnection ( ) :
• This is used to built connection between url and database.
• In case there is an exception in try block, the subsequent catch block
caught and handle the exception, The exception show you no suitable
driver is found.

Driver

  • 1.
  • 2.
  • 3.
    • This interfaceis used to define the methods which must be implemented by JDBC Driver
  • 4.
    • The interfacethat every driver class must implement. • Each driver should supply a class that implements the Driver interface.
  • 5.
    Connect() • Connection connect(Stringurl, Properties info) throws SQLException • Attempts to make a database connection to the given URL. The driver should return "null" if it realizes it is the wrong kind of driver to connect to the given URL. This will be common, as when the JDBC driver manager is asked to connect to a given URL it passes the URL to each loaded driver in turn.The driver should throw an SQLException if it is the right driver to connect to the given URL but has trouble connecting to the database. • The java.util.Properties argument can be used to pass arbitrary string tag/value pairs as connection arguments. Normally at least "user" and "password" properties should be included in theProperties object.
  • 6.
    getConnection ( ) •Driver.getConnection ( ) : • This is used to built connection between url and database. • In case there is an exception in try block, the subsequent catch block caught and handle the exception, The exception show you no suitable driver is found.