Re: getColumns() - workaround

Поиск
Список
Период
Сортировка
От Auri Mason
Тема Re: getColumns() - workaround
Дата
Msg-id Pine.LNX.4.44.0204041602410.6845-100000@mendeleev.syntrex.com
обсуждение исходный текст
Ответ на Re: getColumns() - workaround  (Auri Mason <amason@syntrex.com>)
Список pgsql-jdbc
again me.. :)

works fine also with a view! ^_____^

On Thu, 4 Apr 2002, Auri Mason wrote:

> I've find the workaround for postreSQL
>
> //->>>>>>>>>>>>the following returns no rows!
> ResultSet rs = dma.getColumns(getCatalog(), getSchema(), tableName.toUpperCase(), fieldName.toUpperCase());
>
> //->>>> the following WORKS FINE!
> ResultSet rs = dma.getColumns("", "",tableName.toLowerCase(), fieldName.toLowerCase());
>
> BTW, it doesn't work if tablename is a view :(
>
> --
> Auri


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Barry Lind
Дата:
Сообщение: Re: Fwd: org/postgresql/jdbc2/ResultSet.java
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: getColumns() - workaround