ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/fbintf/udr/testbed/FBUdrPlugin.pas
(Generate patch)

Comparing ibx/trunk/fbintf/udr/testbed/FBUdrPlugin.pas (file contents):
Revision 402 by tony, Mon Aug 1 10:07:24 2022 UTC vs.
Revision 421 by tony, Sat Oct 21 14:22:28 2023 UTC

# Line 884 | Line 884 | var args: IResultset;
884      separator: AnsiString;
885   begin
886    if not FAttachment.HasFunction(aFunctionName) then
887 <    aFunctionName := AnsiUpperCase(aFunctionName);
887 >    aFunctionName := SafeAnsiUpperCase(aFunctionName);
888    args := FAttachment.OpenCursorAtStart(FunctionArgsSQL,[aFunctionName]);
889    arglist := '';
890    separator := ':';
# Line 920 | Line 920 | var args: IResultset;
920      ProcType: integer;
921   begin
922    if not FAttachment.HasProcedure(aProcName) then
923 <    aProcName := AnsiUpperCase(aProcName);
923 >    aProcName := SafeAnsiUpperCase(aProcName);
924    args := FAttachment.OpenCursorAtStart(sGetProcArgsSQL,[aProcName]);
925    arglist := '';
926    separator := ':';

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines