Basically a column in my database is called 'default' which is no problem in sql but the generator converts this directly without modification and the compiler finds this disagreeable.
I looked for a way to rename fields and that would work as a solution here but I assume this would be quite some intense processing during generation
The simplest thing is probably just to rename reserved words like 'default' into @default so that they can be used.
But either solution will do and I leave that to you.
I did not try any other reserved words.
I looked for a way to rename fields and that would work as a solution here but I assume this would be quite some intense processing during generation
The simplest thing is probably just to rename reserved words like 'default' into @default so that they can be used.
But either solution will do and I leave that to you.
I did not try any other reserved words.