Re: getNotifications

From: Maciek Sakrejda <m(dot)sakrejda(at)gmail(dot)com>
To: dmp <danap(at)ttc-cmc(dot)net>
Cc: kfan <kfan(dot)b1(at)gmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: getNotifications
Date: 2012-08-17 17:03:57
Message-ID: CAOtHd0DnX61qY+eZzR8WaJxrd_GwH-dFBvRTxvXzx1TkCyTwFA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

> I'm not sure, but I think I'm with Maciek's orginally response. I don't
> think you're going to be able to cast a java.sql.Connection to PGConnection
> then call one of the latter's methods.

You can, if that's the actual runtime type of the Connection object.
You get a Connection back from DriverManager, so it has to work like
that. If there's a pooler in the way things can get more hairy (i.e.,
PGConnection can be wrapped in something that implements
java.sql.Connection but is not a PGConnection, and that can end up as
the only thing expose to the user), but k f was talking about a
compile-time error.

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Maciek Sakrejda 2012-08-17 17:16:02 Re: getNotifications
Previous Message dmp 2012-08-17 16:49:28 Re: getNotifications