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

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
krshin
Posts: 14
Joined: Wed 21 Mar 2007 11:29

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

Post by krshin » Mon 18 May 2015 12:32

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...

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

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

Post by ViktorV » Tue 19 May 2015 08:35

Try to set the BooleanDomainFields option to False as follows:

Code: Select all

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

Post Reply