Re: Why driver does not need to be registered?

From: Kris Jurka <books(at)ejurka(dot)com>
To: Jesus Maudes <jmaudes(at)ubu(dot)es>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Why driver does not need to be registered?
Date: 2009-02-25 23:58:13
Message-ID: Pine.BSO.4.64.0902251853060.2899@leary.csoft.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Thu, 26 Feb 2009, Jesus Maudes wrote:

> [Why does the driver show up even though I didn't register it?]
>

The JDBC4 spec included with the 1.6 JVM includes autoloading
functionality by including a special file in the driver's jar file.

Section 9.2.1 of the JDBC4 spec says:

The DriverManager.getConnection method has been enhanced to support
the Java Standard Edition Service Provider mechanism. JDBC 4.0
Drivers must include the file META-INF/services/java.sql.Driver.
This file contains the name of the JDBC driver's implementation
of java.sql.Driver.

So the JVM will scan the jars available and look for this special file and
load the driver specified in it automatically.

Kris Jurka

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Jesus Maudes 2009-02-26 00:05:22 Early JDBC driver load?
Previous Message Jesus Maudes 2009-02-25 23:51:07 Why driver does not need to be registered?