Re: How to get a table's constraints

From: Carlos Correia <carlos(at)m16e(dot)com>
To: Kris Jurka <books(at)ejurka(dot)com>
Cc: Lista Postgres JDBC <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: How to get a table's constraints
Date: 2004-02-06 15:13:56
Message-ID: 1076080436.1824.0.camel@devo.m16e.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

A Qui, 2004-02-05 às 14:51, Kris Jurka escreveu:
> On 5 Feb 2004, Carlos Correia wrote:
>
> > Is there any way of obtaining a list of the constraints (table
> > constraints and column constraints) of a table? I mean, other then the
> > foreign key's description (getImportedKeys and getExportedKeys)?
> >
>
> You get retrive NOT NULL constraints by checking the NULLABLE column in
> DatabaseMetaData.getColumns(). If you are referring to check constraints
> the only way to retrieve that is by manually querying the system catalogs,
> although 7.4 has a view information_schema.check_constraints which makes
> this easy. JDBC doesn't have any concept of theses constraints because
> there is no portable way of representing them.
>
> Kris Jurka
>

thanks, if it's not portable i'll try not to use it by now ...

carlos

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Curtis Stanford 2004-02-06 16:44:29 Re: Postgresql 7.4.1 and JDBC setFetchSize
Previous Message Carlos Correia 2004-02-06 14:08:13 Problems with DatabaseMetaData.getImportedKeys