jdbc driver: Why it isn't jdbcCompliant? - Mailing list pgsql-interfaces

From Janossy Gergely
Subject jdbc driver: Why it isn't jdbcCompliant?
Date
Msg-id 00052701341103.02227@azul
Whole thread Raw
List pgsql-interfaces
Hi! 

I'm using Sun JDK 1.2.2 and tried to use the pgsql interface with postgresql
6.x and 7.0 as well. I couldn't use any of the interfaces because
the method Driver.jdbcCompliant() is always false. Even with mysql driver.
I used a little test program:
   if (evt.getSource()==registerButton) {      try {          Driver
d=(Driver)Class.forName(driver.getText()).newInstance();         kiir("Registered driver: "+driver.getText());
kiir("Verzio:"+d.getMajorVersion()+"."+d.getMinorVersion());          String s;          if (!d.jdbcCompliant()) s="
not";          else s=" ";          kiir("This driver is "+s+"JDBC-compliant");      } catch (Exception e) {
hiba("Registrationfailed", e);      }
 


where driver.Gettext is the path of the postgres driver (org.postgres.Driver
i think.)

Thanx for your help

Greg.


pgsql-interfaces by date:

Previous
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] [DONE] PostgreSQL-7.0 binary for WinNT
Next
From: Gunnar R|nning
Date:
Subject: Re: jdbc driver: Why it isn't jdbcCompliant?