Thread

  1. Re: [GENERAL] JDBC drivers

    Joao Paulo Felix <felix@cyclades.com> — 1998-05-28T16:28:24Z

    Jaosn Tan wrote:
     
    > Can any one tell me wehre I cna find the Postgres JDBC drivers please?
    
    
    Hey Jaosn you can try the following: 
    
    http://www.hottub.org/~adrian/Java/ 
    	
    http://www.demon.co.uk/finder/postgres/index.html
    
    and 
    
    ftp://ftp.ai.mit.edu/people/rst/rst-jdbc.tar.gz
    
    
    Good luck,
    
    JP
    
    
  2. JDBC drivers

    Jaosn Tan <mklinux@chariot.net.au> — 1998-05-28T23:44:40Z

    Hi Folks,
    
    Can any one tell me wehre I cna find the Postgres JDBC drivers please?
    
    Everything I find seems to eventually lead to
    http://www.retep.org.uk/java, which appears to be broken. Or at least no
    longer there.
    
    Thanks in advance
    Jason Tan
    
    
    
  3. Re: [GENERAL] JDBC drivers

    Peter Mount <pgsqlgen@retep.org.uk> — 1998-05-29T05:52:48Z

    On Thu, 28 May 1998, Joao Paulo Felix wrote:
    
    > http://www.demon.co.uk/finder/postgres/index.html
    
    This one will be closing soon. It's replaced by:
    http://www.retep.org.uk/postgres/index.html
    
    -- 
    Peter T Mount peter@retep.org.uk or petermount@earthling.net
    Main Homepage: http://www.retep.org.uk
    ************ Someday I may rebuild this signature completely ;-) ************
    Work Homepage: http://www.maidstone.gov.uk Work EMail: peter@maidstone.gov.uk
    
    
    
  4. Re: [GENERAL] JDBC drivers

    Peter Mount <pgsqlgen@retep.org.uk> — 1998-05-29T05:54:11Z

    On Thu, 28 May 1998, Jaosn Tan wrote:
    
    > Hi Folks,
    > 
    > Can any one tell me wehre I cna find the Postgres JDBC drivers please?
    > 
    > Everything I find seems to eventually lead to
    > http://www.retep.org.uk/java, which appears to be broken. Or at least no
    > longer there.
    
    That link is being setup this weekend, but it actually won't have the
    postgres stuff. Like my old site, it's going to be under postgres, ie:
    
    http://www.retep.org.uk/postgres/index.html
    
    with a small faq on:
    
    http://www.retep.org.uk/postgres/faq.html
    
    -- 
    Peter T Mount peter@retep.org.uk or petermount@earthling.net
    Main Homepage: http://www.retep.org.uk
    ************ Someday I may rebuild this signature completely ;-) ************
    Work Homepage: http://www.maidstone.gov.uk Work EMail: peter@maidstone.gov.uk
    
    
    
  5. JDBC Drivers + Postgres 6.3.2

    PostreSQL Server <postgres@tmt.kaybee.org> — 1998-05-29T17:57:39Z

    If anybody can help me i would appreciate it:
    
    OS: HP-UX
    java.version: Pre-release(2) HP-UX Java 1.1.2
    
    my driver loads correctly but when i try to make a connection to the
    database, i get a NullPointerException.
    
    here's the code:
    	public String driverName = "postgresql.Driver";
    	public String url = "jdbc:postgresql://hostname:5432/commanddb?
    		user=*&password=*";
         Connection db;
        
    
    public connect() throws SQLException,ClassNotFoundException
    {
              Class.forName(driverName);
              println("Driver class loaded.");
              db = DriverManager.getConnection(url);
              .... it fails here.
    
    the postmaster is running and on the right port.  The database commanddb
    exists and has test data.  
    
    when the app is run, the debug output from the postmaster is:
    
    postmaster: ServerLoop:         handling reading 6
    postmaster: ServerLoop:         handling reading 6
    postmaster: ServerLoop:         handling reading 6
    
    
    
    any ideas??
    
    
    
  6. Re: [GENERAL] JDBC Drivers + Postgres 6.3.2

    Peter Mount <pgsqlgen@retep.org.uk> — 1998-05-30T11:28:37Z

    On Fri, 29 May 1998, PostreSQL Server wrote:
    
    > 
    > If anybody can help me i would appreciate it:
    > 
    > OS: HP-UX
    > java.version: Pre-release(2) HP-UX Java 1.1.2
    > 
    > my driver loads correctly but when i try to make a connection to the
    > database, i get a NullPointerException.
    
    This problem does pop up now and then. I'll check the current source and
    I'll get back to you.
    
    NB: I've only tested the driver with 1.1.3 & 1.1.5, so I'm not sure if
    there are any problems with 1.1.2.
    
    -- 
    Peter T Mount peter@retep.org.uk or petermount@earthling.net
    Main Homepage: http://www.retep.org.uk
    ************ Someday I may rebuild this signature completely ;-) ************
    Work Homepage: http://www.maidstone.gov.uk Work EMail: peter@maidstone.gov.uk