Subject Re: [IBO] Paradox To Interbase Boolean Survey
Author Svein Erling Tysvær
>Also, what is the best way to referece these boolean fields. If I
>were to create a domain (0,1) do I still use 'asinteger' in my code ?

Specify that it is a Boolean in your ColumnAttributes, i.e.
<field>=BOOLEAN; and then reference it using AsBoolean. I think the default
values (i.e. if you don't specify anything yourself) are 0 representing
false, and 1 representing true.

Set