PGXADataSource does not implement DataSource

Поиск
Список
Период
Сортировка
От Bill Middleton
Тема PGXADataSource does not implement DataSource
Дата
Msg-id 4efe54510704201300i4636c611r88dbb48c96be7270@mail.gmail.com
обсуждение исходный текст
Ответы Re: PGXADataSource does not implement DataSource
Re: PGXADataSource does not implement DataSource
Список pgsql-jdbc
Hello and thanks for for the efforts.  I've noticed that your XA implementation does not formally implement javax.sql.DataSource.  I felt pretty sure that this was a simple oversight, given that BaseDataSource provides complete compatibility with the DataSource interface.  I patched thusly:

Index: org/postgresql/ds/common/BaseDataSource.java
===================================================================
RCS file: /usr/local/cvsroot/pgjdbc/pgjdbc/org/postgresql/ds/common/BaseDataSource.java,v
retrieving revision 1.7
diff -r1.7 BaseDataSource.java
12a13,14
> import javax.sql.DataSource;
>
25c27
< public abstract class BaseDataSource implements Referenceable
---
> public abstract class BaseDataSource implements Referenceable, DataSource


and now Hibernate happily accepts the postgresql XA using JTA.

Best regards,

Bill Middleton

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

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: Poor addBatch performance. Why dosn't it use copy ?
Следующее
От: Kris Jurka
Дата:
Сообщение: Re: PGXADataSource does not implement DataSource