| From: | torben <torben(at)frojonck(dot)dk> |
|---|---|
| To: | pgsql-jdbc(at)postgresql(dot)org |
| Subject: | Re: Jboss and largeObjectManager |
| Date: | 2005-06-08 19:19:32 |
| Message-ID: | 42A744C4.8060009@frojonck.dk |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-jdbc |
Vadim Nasardinov wrote:
>On Wednesday 08 June 2005 14:21, torben wrote:
>
>
>>LargeObjectManager lobj = ((org.postgresql.PGConnection) dbcon).getLargeObjectAPI();
>>
>>I get the error java.lang.ClassCastException:
>>org.jboss.resource.adapter.jdbc.WrappedConnection
>>
>>
>
>I'm not a JBoss programmer, but looking at the JBoss Javadoc at
>
>http://docs.jboss.org/jbossas/javadoc/4.0.2/org/jboss/resource/adapter/jdbc/WrappedConnection.html#getUnderlyingConnection%28%29
>
>it seems to me that what you want to do is
>
> LargeObjectManager lobj =
> ((org.postgresql.PGConnection) dbcon.getUnderlyingConnection()).getLargeObjectAPI();
>
>
>
Thank's very much. It was exactly what I needed.
>(As a side note, this question should've been directed to some JBoss-specific
>list.)
>
>
Yes, I can see it now it was the wrong list.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Oliver Jowett | 2005-06-08 22:49:38 | Re: Num of returned ROWS |
| Previous Message | Nelson Arapé | 2005-06-08 18:56:51 | Re: FW: PostgreSQL JDBC Installation |