ecpg precompilation error

From: pawel <pgajer(at)chow(dot)mat(dot)jhu(dot)edu>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: ecpg precompilation error
Date: 1999-12-13 17:01:14
Message-ID: 3855265A.8D0C723B@math.jhu.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hi,
when trying to precompile the following code with
> ecpg -I/usr/include/pgsql ecpg_test.pc

I am getting the following error message

ecpg_test.pc:27: invalid datatype 'zipcode_record'

this is probably something very simple, but I don't get this error,
when processing the code with Oracle.
I would appreciate any feedback.
thanks
pawel

--------------------------------- ecpg_test.pc file ---------------
#include <stdio.h>
#include <string.h>

typedef struct {
int zip;
} zipcode_record;

EXEC SQL INCLUDE sqlca;
void add_customer();

void main() {
/* just a test */
}

void add_customer() {
EXEC SQL BEGIN DECLARE SECTION;
zipcode_record zrec;
/* line 27 */
EXEC SQL END DECLARE SECTION;
}

Browse pgsql-interfaces by date

  From Date Subject
Next Message Kelvin O. Lim 1999-12-13 17:06:01 access97-Recordset not updatable
Previous Message Edouard DESSIOUX 1999-12-13 16:23:59 Table or not table ?