Re: ERROR: array subscript out of range - Mailing list pgsql-general

From Alvaro Herrera
Subject Re: ERROR: array subscript out of range
Date
Msg-id 20090411040340.GH8957@alvh.no-ip.org
Whole thread Raw
In response to ERROR: array subscript out of range  (chinchu2005 <chinchu2005@gmail.com>)
List pgsql-general
chinchu2005 escribió:
>
> Hello all,
> Need ur help.I dont know wats wrong with the following fucntion.
> create or replace function twoarray() returns setof integer as
> '
> declare
> i integer;
> j integer;
> a integer[][];
> begin
> for i in 1..10 loop
> for j in 1..2 loop
> a[i][j]:=i*j;

We just had this question on the spanish list.  Somebody was kind enough
to write the answers down in the Wiki:
http://wiki.postgresql.org/wiki/Matrices_Multidimensionales_con_funciones

It is all in spanish, but the code examples should be helpful
nonetheless.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

pgsql-general by date:

Previous
From: Pedro Doria Meunier
Date:
Subject: Re: Internationalization
Next
From: Jasen Betts
Date:
Subject: Re: Connect to server PG from laptop java app