31 |
|
interface |
32 |
|
|
33 |
|
uses |
34 |
< |
Classes, SysUtils, IBCustomDataSet, DB, IB, IBDatabase, IBExternals, FBMessages; |
34 |
> |
Classes, SysUtils, IBCustomDataSet, DB, IB, IBDatabase, IBExternals, IBMessages; |
35 |
|
|
36 |
|
type |
37 |
|
|
88 |
|
function getSQLParam(index: integer): ISQLParam; |
89 |
|
function ByName(Idx: AnsiString): ISQLParam ; |
90 |
|
function GetModified: Boolean; |
91 |
+ |
function GetHasCaseSensitiveParams: Boolean; |
92 |
|
end; |
93 |
|
|
94 |
|
{ TParamIntf } |
489 |
|
Result := FModified; |
490 |
|
end; |
491 |
|
|
492 |
+ |
function TParamListIntf.GetHasCaseSensitiveParams: Boolean; |
493 |
+ |
begin |
494 |
+ |
Result := false; |
495 |
+ |
end; |
496 |
+ |
|
497 |
|
{ TIBUpdate } |
498 |
|
|
499 |
|
function TIBUpdate.GetSQL(UpdateKind: TUpdateKind): TStrings; |