Subject IBODataSet
Author hans
Hello Jason,

Would you consider the following addition to TIBODataSet ?

//hans replaced: if SQLLen >= 256 then
//by
else if SQLLen > MaximumStringSize then
NewDataType := ftMemo
else
begin
NewDataType := ftString;

and in IB_Session

CheckForReservedTokens: boolean = false;

{: This global variable sets the limit for a VarChar to be
returned as a ftString FieldType, before it becomes a ftMemo FieldType
in TIBODataSet.}
MaximumStringSize: Integer = 255;

Best Regards
Hans