[BUGS] ecpg multidimensional arrays

2004-02-28 Thread Margit Schubert-While
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

[BUGS] ecpg segmentation error

2004-02-28 Thread Margit Schubert-While
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

Re: [BUGS] ecpg multidimensional arrays

2004-02-29 Thread Margit Schubert-While
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

Re: [BUGS] ecpg segmentation error

2004-03-05 Thread Margit Schubert-While
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