Page 1 of 1

'"BooleanDomainFields " is not a valid option for InterBase UniProvider

Posted: Mon 18 May 2015 12:32
by krshin
Hello DevArt,

I'm starting migration from my old UIB to fresh UniDAC project which is connected to Firebird Database and I have one problem with boolean domain fields.

When I set specific option:

Code: Select all

InterBase.BooleanDomainFields = False
Program raise an error:
Exception class Exception with message '"BooleanDomainFields " is not a valid option name for InterBase UniProvider'.
What can bi problem, because I need to use boolean domain fields as integer to just be compatibile between old and new techonogy and I plan to use same scenario on MS SQL and Oracle?

Thanks in advance...

Re: '"BooleanDomainFields " is not a valid option for InterBase UniProvider

Posted: Tue 19 May 2015 08:35
by ViktorV
Try to set the BooleanDomainFields option to False as follows:

Code: Select all

UniQuery.SpecificOptions.Values['InterBase.BooleanDomainFields'] := 'False';