When I add a field to my entity:
The generated Update DDE for my Firebird table, Target Language of SQL, Target Platform of RDBMS (the only option), the SQL generated is:
ALTER TABLE "Test1"
ADD COLUMN "City" VARCHAR(50);
It includes the COLUMN keyword, which doesn't look like it's supported on Firebird for ALTER TABLE x ADD x:
https://www.firebirdsql.org/file/documentation/chunk/en/refdocs/fblangref50/fblangref50-ddl-table.html
Removing the COLUMN word, the code executes correctly.
Is there a SQL dialect setting I'm missing, or do I have to manually remove COLUMN from every DDE script I generate?
Thanks,
Ray