Обсуждение: DatabaseMetaData and numeric array

Поиск
Список
Период
Сортировка

DatabaseMetaData and numeric array

От
abyss
Дата:
Hi! Is there a way to get proper precision and scale of numeric array?
 
eg:
create table public.test (
testnum numeric(18,4)[]
);
 
DatabaseMetaData.getPrecision and getScale always return 0...
 
Thanks!

Re: DatabaseMetaData and numeric array

От
Kris Jurka
Дата:

On Mon, 17 Dec 2007, abyss wrote:

> Hi! Is there a way to get proper precision and scale of numeric array?
>

Getting metadata on array types doesn't work at the moment.  This is a
known issue as reported here.

http://archives.postgresql.org/pgsql-jdbc/2007-11/msg00069.php

Kris Jurka