- Instead of FULLDATA it has to be used "FULLDATA", as it is a new column so it is not in .sch file
Then define it locally:
SqlId FULLDATA("FULLDATA");
(perhaps I would rather use something more simple as "F").
Quote:
- NAME|"."|SURNAME is translated to "NAME + '.' + SURNAME". It does not produce any SQL error, but no register is found.
However this works: "NAME || '.' || SURNAME"
That is weird, in SqlExp '|' should be string cat. It could be a bug in SqlExp for specific target DB - what DB is it?
(FYI, it is quite simple, check operator| in SqlExp and see how SqlCase is used to provide different code for different DBs....)
Quote:
- I would like to select all columns plus FULLDATA. How is it done in the Select()?