Re: BLOBs etc

From: Kris Jurka <books(at)ejurka(dot)com>
To: Sven Köhler <skoehler(at)upb(dot)de>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: BLOBs etc
Date: 2005-01-07 04:41:49
Message-ID: Pine.BSO.4.56.0501062328590.14356@leary.csoft.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Fri, 7 Jan 2005, [ISO-8859-15] Sven Köhler wrote:

> > The JDBC driver doesn't know what the target table looks like. It must
> > blindly send data and hope it matches. This is why the set methods can
> > only work for one type while the get methods could work for both.
>
> Is this going to be improved? Either by using serverside prepared
> statements or by changing the server's bahaviour somehow?
>

No, this was actually a design decision. It is possible to determine the
expected data type in many cases, but the downside is that it requires a
network roundtrip to the server. For simple statements this has the
potential to nearly double execution time, so we don't want to do that.

Could we perhaps do this for prepared statements we expect to reuse? We
could, but then you've introduced an odd inconsistency where sometimes
things will work and sometimes they won't.

Kris Jurka

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Sven Köhler 2005-01-07 05:21:52 Re: BLOBs etc
Previous Message Sven Köhler 2005-01-07 04:18:35 Re: BLOBs etc