Quantcast
Channel: SCN: Message List - SAP Advantage Database Server
Viewing all articles
Browse latest Browse all 997

Re: Problem with ADS 11.10.0.24 and Delphi XE8.1 when using locate and SQL-Statement

$
0
0

Solution:

 

In adsdata.pas

function  BuildFilterString(poFields: {$IFDEF ADSDELPHIXE3_OR_NEWER} TList<TField> {$ELSE} TList {$ENDIF}; bExactCompare, bCaseInsensitive : Boolean): string;

 

function TAdsDataSet.BuildFilterString(poFields: {$IFDEF ADSDELPHIXE3_OR_NEWER} TList<TField> {$ELSE} TList {$ENDIF}; bExactCompare, bCaseInsensitive: Boolean): string;

 

...

strFilter:= BuildFilterString({$IFDEF ADSDELPHIXE3_OR_NEWER} poFields {$ELSE} List(poFields) {$ENDIF}, False { Not exact compare }, loCaseInsensitive in Options);

 

Without guarantee!


Viewing all articles
Browse latest Browse all 997

Trending Articles