Re: blob without largeobject api

Поиск
Список
Период
Сортировка
От Oliver Jowett
Тема Re: blob without largeobject api
Дата
Msg-id 4072A183.6030802@opencloud.com
обсуждение исходный текст
Ответ на Re: blob without largeobject api  (Edoardo Ceccarelli <eddy@axa.it>)
Ответы Re: blob without largeobject api
Список pgsql-jdbc
Edoardo Ceccarelli wrote:
> Tried with a driver downloaded from http://jdbc.postgresql.org/
>
> pg74.213.jdbc3.jar
>
> the result is always the same:
> java.lang.ClassCastException: com.caucho.sql.UserConnection
> on row:
> LargeObjectManager lom =
> ((org.postgresql.PGConnection)db).getLargeObjectAPI();

Ok, this means your pooling implementation is not using the postgresql
driver's PooledConnection to generate the proxy connections to hand out,
but is implementing them itself (using instances of
com.caucho.sql.UserConnection, it appears). So you won't be able to get
at postgresql-specific interfaces with that pooling implementation,
regardless of what the driver does.

> I think that the second suggestion is about using a "standard" way to
> save a blob field, I have tried something like this:
> - insert record without blob
> - open record for update and use setBytes() to save blob data
> having some minor problems so far but I'd like to know if this is the
> right way to do it.

That's the basic idea, although there's no real need to separate the
insert and update. With compatible=7.1 in effect, setBytes() becomes
"create an appropriate LO and set the parameter to the new OID". The
main gotcha is that you must wrap any queries that deal with LOs in a
transaction; autocommit won't work. You'll also need a mechanism to
clean up LOs that no longer have references to them in the main DB (I
think there might be something in contrib/ to do this?)

-O

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Edoardo Ceccarelli
Дата:
Сообщение: Re: blob without largeobject api
Следующее
От: "David Wall"
Дата:
Сообщение: Re: blob without largeobject api