Re: Comparing Enumerated Types between JDBC and ODBC drivers

From: Radosław Smogura <rsmogura(at)softperience(dot)eu>
To: Richard Broersma <richard(dot)broersma(at)gmail(dot)com>
Cc: pgsql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, pgsql-odbc <pgsql-odbc(at)postgresql(dot)org>
Subject: Re: Comparing Enumerated Types between JDBC and ODBC drivers
Date: 2010-12-22 14:11:08
Message-ID: cef1961b43643f269c8fd252c0bbe331@softperience.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc pgsql-odbc

Hi,

First, You need to distinguish between SQL COMPLEX / COMPOSITE types
(sometimes called as UDT) and PSQL internal types. Interval is internal
type, such like integer, varchar, etc and it's mapped in JDBC to Java
object from PSQL JDBC api. There is no public (JDK, OO, SUN) for
Interval, but you have right in your situation you can get this type by
calling getString() and you will get it's compatible representation, as
well setString() should store those, too. You can find internal types
which doesn't have mapping to any Java class, too.

If you want SQL COMPOSITE types, only one way to access them (as I
think), is similarly, by get/set String. JDBC driver doesn't support
custom mapping of UDT to Java classes.

It's looks ODBC driver has better support for PSQL.

Kind regards,
Radosław Smogura

On Tue, 21 Dec 2010 10:14:18 -0800, Richard Broersma
<richard(dot)broersma(at)gmail(dot)com> wrote:
> While testing the waters of porting a MS-Access application to
> OObase.
> I noticed that certain types such as Enumerated types - as well as
> other types (i.e. interval), where not representable in OObase using
> the JDBC driver. However, when I used the ODBC driver for OOBase
> all
> such types were once again representable (they were represented as
> text).
>
> Is this an issues with OOBase or an issue with the representation of
> complex types using the JDBC driver?
>
> --
> Regards,
> Richard Broersma Jr.

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Richard Broersma 2010-12-22 15:20:49 Re: Comparing Enumerated Types between JDBC and ODBC drivers
Previous Message Richard Broersma 2010-12-21 18:14:18 Comparing Enumerated Types between JDBC and ODBC drivers

Browse pgsql-odbc by date

  From Date Subject
Next Message Richard Broersma 2010-12-22 15:20:49 Re: Comparing Enumerated Types between JDBC and ODBC drivers
Previous Message Hiroshi Inoue 2010-12-22 03:51:28 Re: pgsqlodbc 09_00_0200 is twice as slow on inserts as jdbc driver