Subject | IBODataSet |
---|---|
Author | hans |
Post date | 2003-03-02T00:24:46Z |
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
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