Re: JDBC object factory

Поиск
Список
Период
Сортировка
От Dave Cramer
Тема Re: JDBC object factory
Дата
Msg-id 31516617-4AE2-4D3D-BD16-4B8D8E854A43@fastcrypt.com
обсуждение исходный текст
Ответ на JDBC object factory  ("Julius Stroffek" <julo@stroffek.net>)
Список pgsql-jdbc
On 21-Feb-07, at 10:47 AM, Julius Stroffek wrote:

> Hello All,
>
> I am thinking of implementing a JDBC object factory which will
> create correct jdbc object instances at runtime depending on java
> version the application is running on.
>
> The interface should look like
>
> interface JDBCObjectFatory {
> public static Connection createConnection(some prameters);
> public static Connection createStatement(some parameters);
> ... etc
> }
>
> And the corresponding implementations should be JDBC2ObjectFactory,
> JDBC3ObjectFactory and JDBC4ObjectFactory.
>
> For each JDBC version the corresponding set of objects might be
> available. The appropriate inheritance relations might be in place
> where the implementations of the methods common to more JDBC
> version will be implemented only in the super class (due to object
> factory).
>
> As I am new to posgres jdbc driver I would like to ask some questions:
> 1.) What do you think of the idea?
Why would you want to do this ? Just get the correct jar(s) and use
the code the way it is.
> 2.) Would it be worthwhile to implement such a feature and spent
> some time on it? Is anybody interested?
Well other than the obvious problem of even building it since each
jdbc interface is different for each compiler. Again I"m wondering why ?
> 3.) Are there any processes described for integrating patches?
send context diffs against CVS
>
> Thank you for your advices.
>
> Regards
>
> Julo


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Class Cast Exception for DataSource
Следующее
От: "Blakely, Jerel \(Mission Systems\)"
Дата:
Сообщение: Re: Problem with jdbc connection behavior