DoGenerateCreateTable issue with Firebird

Issue #209 resolved
luannic created an issue

Class Spring.Persistence.SQL.Generators.Ansi Line 167: IfThen(cpNotNull in field.Properties, 'NOT NULL', 'NULL'),

When creating a table the SQL statement of a field is adding the NULL value that it is not supported by Furebird 2.5 SQLDialect 3.

We have solved the issue by overriding the method in Class Spring.Persistence.SQL.Generators.Firebird with the following update IfThen(cpNotNull in field.Properties, 'NOT NULL', ''),

Comments (5)

  1. Log in to comment