exec sql begin declare section;
static int intcur[50][10] = { 0 };
produces :
ERROR: No multi-dimensional array support for simple data types
Margit
---(end of broadcast)---
TIP 6: Have you searched our list archives?
ht
Following cursor declaration which worked in 7.3.4, produces
a seg fault with 7.4.1 and todays cvs.
exec sql
declare functestcur0 scroll cursor for
select oid, * into
:rownum
,:sfunckey
,:sfuncfill
At 17:13 29.02.2004 +0100, you wrote:
On Fri, Feb 27, 2004 at 07:24:18PM
+0100, Margit Schubert-While wrote:
> exec sql begin
declare section;
> static int intcur[50][10] = { 0
};
>
> produces :
> ERROR: No multi-dimensional array support for simple data
types
So f
Actually caused by undefined variable later in the code.
Sample prog sent to Michael.
Margit
---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match