Re: Array Char/VarChar Size - Mailing list pgsql-jdbc

From Tom Lane
Subject Re: Array Char/VarChar Size
Date
Msg-id 10183.1204310667@sss.pgh.pa.us
Whole thread Raw
In response to Re: Array Char/VarChar Size  (Kris Jurka <books@ejurka.com>)
Responses Re: Array Char/VarChar Size  (dmp <danap@ttc-cmc.net>)
List pgsql-jdbc
Kris Jurka <books@ejurka.com> writes:
> Multi-dimensional array information is not stored.  Every array type may
> be any number of dimensions.  The precision information is not available
> in the information_schema, but it is available in the system catalog
> tables.  See pg_attribute.atttypmod, but it does require some decoding.

Rather than embedding knowledge of typmod encoding in client-side code,
may I suggest using the format_type function?  For example

select format_type(atttypid, atttypmod) from pg_attribute where
attrelid = 'my_table'::regclass and attname = 'my_column';

This will give you back something reasonably standardized, like
"character varying(42)[]".  You'll still need a bit of logic to
extract what you want, but it seems much less likely to break.

            regards, tom lane

pgsql-jdbc by date:

Previous
From: Kris Jurka
Date:
Subject: Re: Bug while retrieving money data type from db
Next
From: Josh Berkus
Date:
Subject: Summer of Code Java?