Re: Driver.acceptsURL(String) not working correctly

From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Kris Jurka <books(at)ejurka(dot)com>
Cc: Garrick Dasbach <Garrick(at)musicrebellion(dot)com>, "pgsql-jdbc(at)postgresql(dot)org" <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Driver.acceptsURL(String) not working correctly
Date: 2003-11-03 15:24:12
Message-ID: 1067873051.1626.67.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Patch applied

Thanks

Dave
On Mon, 2003-11-03 at 05:47, Kris Jurka wrote:
> On Fri, 22 Aug 2003, Garrick Dasbach wrote:
>
> > I'm currently writing an application which allows a user to enter a JDBC
> > connection string, and I make a connection using that string and the
> > drivers available to me. While working with the Postgresql driver, our
> > primary database, I noticed that the acceptsURL() function of the JDBC
> > driver does not function correctly.
> >
> > This is my test code:
> >
> > Driver driver = // Driver Initialization
> > if(driver.acceptsURL("blah")){
> > // report good news
> > } else {
> > // fail to user
> > }
> >
> > I should recieve a failure, resulting in a dialog popup to the user.
> > However acceptsURL returns true in this case.
>
> Here is a patch that fixes this. Also it corrects the comments describing
> the protocol string to say jdbc:postgresql: instead of
> jdbc:org.postgresql:
>
> Also I've added this test case and another for IPv6 addresses to the
> acceptsURL regression test.
>
> Kris Jurka
>
> ______________________________________________________________________
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2003-11-03 15:24:39 Re: [JDBC] JDBC getImortedKeys() getExportedKeys()
Previous Message Dave Cramer 2003-11-03 15:08:52 Re: ResultSetMetaData implementation addendum