Re: Reading schema information

From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Mark Rotteveel <mark(at)lawinegevaar(dot)nl>
Cc: dmp <danap(at)ttc-cmc(dot)net>, PostgreSQL JDBC <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Reading schema information
Date: 2015-05-26 11:54:25
Message-ID: CADK3HHKLPW2GFV2YqU3n3AGOnQpPn1NaBdcLjyWRzCTpHqKmdw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Yes, in actual fact we have no way of knowing if it was generated or not.

Dave Cramer

dave.cramer(at)credativ(dot)ca
http://www.credativ.ca

On 26 May 2015 at 07:51, Mark Rotteveel <mark(at)lawinegevaar(dot)nl> wrote:

> On Mon, 25 May 2015 09:21:34 -0600, dmp <danap(at)ttc-cmc(dot)net> wrote:
> > dmp wrote:
> >> dmp wrote:
> >>> Mansour Al Akeel wrote:
> ...
> >>>> We have:
> >>>>
> >>>> IS_GENERATEDCOLUMN String => Indicates whether this is a generated
> >>>> column
> >>>>
> >>>> YES --- if this a generated column
> >>>> NO --- if this not a generated column
> >>>> empty string --- if it cannot be determined whether this is a
> >>>> generated column
> >>>>
> >>>>
> >>>> My questions is, is this a bug ? if not, how can I obtain this
> >>>> information about a column (if it's generated or not) ?
> >>>>
> >> Hello,
> >>
> >> I'm sorry, after testing, currently the given name IS_GENERATEDCOLUMN
> is
> >> given the error as you describe. The index of 23 can be used to obtain
> >> the
> >> results desired.
> >>
> >> Did you search the mailing list for a report or issue on this?
> >
> > Sorry for an earlier error.
> >
> > rs = dbMetaData.getColumns(tableMetaData.getCatalogName(1),
> > tableMetaData.getSchemaName(1),
> > tableMetaData.getTableName(1), "%");
> >
> > On further check,
> > org.postgresql.Abstractjdbc2DatabaseMetaData.getColumns() does
> > not implement the named Field IS_GENERATEDCOLUMN. As indicated using an
> > index
> > of 23 instead of the named Field should work.
>
> Index 23 is IS_AUTOINCREMENT which does not have the same meaning as
> IS_GENERATEDCOLUMN (index 24) which was added to the JDBC specification in
> Java 7 / JDBC 4.1. The former is only for one specific column type: auto
> increment (eg serial), while the latter is for all calculated or otherwise
> generated columns.
>
> Mark
>
>
> --
> Sent via pgsql-jdbc mailing list (pgsql-jdbc(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-jdbc
>

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message dmp 2015-05-26 14:39:31 Re: Reading schema information
Previous Message Mark Rotteveel 2015-05-26 11:51:52 Re: Reading schema information