We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314db47 commit b681ebfCopy full SHA for b681ebf
source/routine_editor.pas
@@ -555,7 +555,7 @@ function TfrmRoutineEditor.ComposeCreateStatement(NameOfObject: String): String;
555
tmp := '';
556
if ProcOrFunc = 'PROCEDURE' then
557
tmp := tmp + Parameters[i].Context + ' ';
558
- tmp := tmp + DBObject.Connection.QuoteIdent(Parameters[i].Name) + ' ' + Parameters[i].Datatype;
+ tmp := tmp + DBObject.Connection.QuoteIdent(Parameters[i].Name.Trim) + ' ' + Parameters[i].Datatype;
559
Params.Add(tmp);
560
end;
561
if Params.Count > 0 then
0 commit comments