two dimensional arrays supported?
| От | Guido Fiala |
|---|---|
| Тема | two dimensional arrays supported? |
| Дата | |
| Msg-id | 200403101348.06320.guido.fiala@dka-gmbh.de обсуждение исходный текст |
| Ответы |
Re: two dimensional arrays supported?
Re: two dimensional arrays supported? |
| Список | pgsql-jdbc |
Hallo,
i just tested to access a 2-dimensional array of varchar via jdbc and the
driver gives the exception "not implemented" - did i something wrong, or is
it not yet supported?
Any alternative available?
My table is defined as following:
CREATE TABLE tst_2dimarray
(
twodim varchar[][] NULL,
onedim varchar[] NULL
);
my code snippet:
Array a=rs.getArray("twodim");
String aa[][]=(String[][])a.getArray();//this line throws exception below
org.postgresql.util.PSQLException: Diese Methode ist noch nicht implementiert.
at org.postgresql.Driver.notImplemented(Driver.java:413)
at org.postgresql.jdbc2.Array.getArray(Array.java:106)
at org.postgresql.jdbc2.Array.getArray(Array.java:63)
at twodimarray.main(twodimarray.java:38)
localized message means "not yet implemented"...
Above code works fine with "onedim".
Guido
В списке pgsql-jdbc по дате отправления: