Attached is a patch to remove the ConnectionHook functionality and thus
authorBruce Momjian
Wed, 4 Jul 2001 15:07:54 +0000 (15:07 +0000)
committerBruce Momjian
Wed, 4 Jul 2001 15:07:54 +0000 (15:07 +0000)
the JDK 1.3 dependency.  For a further explanation see my posting to the
JDBC list on Friday, explaining why this is being done.

Barry Lind

src/interfaces/jdbc/build.xml
src/interfaces/jdbc/org/postgresql/Driver.java.in

index acc48a6010098db3bc783033da1d4e802728bcf1..9d70e2cbb8a30601ab2a54b5cc1d66a8b6660fd9 100644 (file)
@@ -3,7 +3,7 @@
   build file to allow ant (http://jakarta.apache.org/ant/) to be used
   to build the PostgreSQL JDBC Driver.
 
-  $Id: build.xml,v 1.15 2001/05/25 16:29:17 momjian Exp $
+  $Id: build.xml,v 1.16 2001/07/04 15:07:54 momjian Exp $
 
 -->
 
@@ -37,7 +37,6 @@
   -->
   
     
-    
     
     
   
     
     
 
-    
-    
-    
-    
-
     
     
     
   
     
       
-      
       
       
       
index 5d64a3f579b15e0efe697f37906e93ff00f322bb..c243a2f284f27b1a42e168a2c6ec07943e5d85af 100644 (file)
@@ -36,9 +36,6 @@ public class Driver implements java.sql.Driver
       // Placing it here, means that the driver is registered once only.
       java.sql.DriverManager.registerDriver(new Driver());
 
-      // New in 7.1 - register ourselves with the JVM - JDK1.3+ only
-      @[email protected]();
-
     } catch (SQLException e) {
       e.printStackTrace();
     }