Hi,
I have one trouble about exec sql define.
Here's an example:
EXEC SQL DEFINE INTSIZE 2;
EXEC SQL DEFINE I_(x,y) char x[INTSIZE];
EXEC SQL TYPE CUSTOMER_RECORD IS STRUCT {
I_(cno,2)
I_(zip, 2)
};
........
I got the error :ERROR syntax error at or near "(".
Can anybody else me ?