mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
582 lines
19 KiB
ObjectPascal
582 lines
19 KiB
ObjectPascal
unit routine_editor;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, System.SysUtils, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, SynEdit, SynMemo, Vcl.StdCtrls,
|
|
Vcl.ComCtrls, Vcl.ToolWin, VirtualTrees, VirtualTrees.EditLink, SynRegExpr, extra_controls,
|
|
dbconnection, apphelpers, gnugettext, Vcl.Menus, Vcl.ExtCtrls;
|
|
|
|
type
|
|
TFrame = TDBObjectEditor;
|
|
TfrmRoutineEditor = class(TFrame)
|
|
btnSave: TButton;
|
|
btnDiscard: TButton;
|
|
btnHelp: TButton;
|
|
lblSQLcode: TLabel;
|
|
SynMemoBody: TSynMemo;
|
|
PageControlMain: TPageControl;
|
|
tabOptions: TTabSheet;
|
|
tabParameters: TTabSheet;
|
|
tabCreateCode: TTabSheet;
|
|
chkDeterministic: TCheckBox;
|
|
editComment: TEdit;
|
|
comboSecurity: TComboBox;
|
|
comboDataAccess: TComboBox;
|
|
comboReturns: TComboBox;
|
|
comboType: TComboBox;
|
|
editName: TEdit;
|
|
lblName: TLabel;
|
|
lblType: TLabel;
|
|
lblReturns: TLabel;
|
|
lblSQL: TLabel;
|
|
lblSecurity: TLabel;
|
|
lblComment: TLabel;
|
|
listParameters: TVirtualStringTree;
|
|
tlbParameters: TToolBar;
|
|
btnAddParam: TToolButton;
|
|
btnRemoveParam: TToolButton;
|
|
btnClearParams: TToolButton;
|
|
SynMemoCREATEcode: TSynMemo;
|
|
btnRunProc: TButton;
|
|
lblDefiner: TLabel;
|
|
comboDefiner: TComboBox;
|
|
btnMoveUpParam: TToolButton;
|
|
btnMoveDownParam: TToolButton;
|
|
lblDisabledWhy: TLabel;
|
|
spltTop: TSplitter;
|
|
procedure comboTypeSelect(Sender: TObject);
|
|
procedure btnSaveClick(Sender: TObject);
|
|
procedure btnHelpClick(Sender: TObject);
|
|
procedure btnAddParamClick(Sender: TObject);
|
|
procedure listParametersGetText(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType;
|
|
var CellText: String);
|
|
procedure listParametersGetImageIndex(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex;
|
|
var Ghosted: Boolean; var ImageIndex: TImageIndex);
|
|
procedure btnClearParamsClick(Sender: TObject);
|
|
procedure btnRemoveParamClick(Sender: TObject);
|
|
procedure listParametersBeforePaint(Sender: TBaseVirtualTree;
|
|
TargetCanvas: TCanvas);
|
|
procedure listParametersFocusChanged(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex);
|
|
procedure listParametersCreateEditor(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; out EditLink: IVTEditLink);
|
|
procedure listParametersNewText(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; NewText: String);
|
|
procedure listParametersEditing(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; var Allowed: Boolean);
|
|
procedure Modification(Sender: TObject);
|
|
procedure SynMemoBodyDragOver(Sender, Source: TObject; X, Y: Integer;
|
|
State: TDragState; var Accept: Boolean);
|
|
procedure SynMemoBodyDragDrop(Sender, Source: TObject; X, Y: Integer);
|
|
procedure listParametersPaintText(Sender: TBaseVirtualTree;
|
|
const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
|
TextType: TVSTTextType);
|
|
procedure btnDiscardClick(Sender: TObject);
|
|
procedure comboDefinerDropDown(Sender: TObject);
|
|
procedure btnMoveParamClick(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
FAlterRoutineType: String;
|
|
function ComposeCreateStatement(NameOfObject: String): String;
|
|
public
|
|
{ Public declarations }
|
|
Parameters: TRoutineParamList;
|
|
constructor Create(AOwner: TComponent); override;
|
|
procedure Init(Obj: TDBObject); override;
|
|
function DeInit: TModalResult; override;
|
|
function ApplyModifications: TModalResult; override;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
uses main, dbstructures, dbstructures.mysql, grideditlinks;
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
constructor TfrmRoutineEditor.Create(AOwner: TComponent);
|
|
begin
|
|
inherited;
|
|
// Combo items in a .dfm are sporadically lost after an IDE restart,
|
|
// so we set them here to avoid developer annoyance
|
|
comboType.Items.Add(_('Procedure (doesn''t return a result)'));
|
|
comboType.Items.Add(_('Function (returns a result)'));
|
|
comboDataAccess.Items.Add('Contains SQL');
|
|
comboDataAccess.Items.Add('No SQL');
|
|
comboDataAccess.Items.Add('Reads SQL data');
|
|
comboDataAccess.Items.Add('Modifies SQL data');
|
|
comboSecurity.Items.Add('Definer');
|
|
comboSecurity.Items.Add('Invoker');
|
|
Mainform.SynCompletionProposal.AddEditor(SynMemoBody);
|
|
Parameters := TRoutineParamList.Create;
|
|
editName.MaxLength := NAME_LEN;
|
|
FMainSynMemo := SynMemoBody;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.Init(Obj: TDBObject);
|
|
var
|
|
i: Integer;
|
|
begin
|
|
inherited;
|
|
FixVT(listParameters);
|
|
TExtForm.RestoreListSetup(listParameters);
|
|
if Obj.NodeType = lntProcedure then FAlterRoutineType := 'PROCEDURE'
|
|
else FAlterRoutineType := 'FUNCTION';
|
|
editName.Text := DBObject.Name;
|
|
comboType.ItemIndex := 0;
|
|
comboReturns.Text := '';
|
|
comboReturns.Clear;
|
|
for i:=0 to High(Obj.Connection.Datatypes) do
|
|
comboReturns.Items.Add(Obj.Connection.Datatypes[i].Name);
|
|
chkDeterministic.Checked := False;
|
|
SelectNode(listParameters, nil);
|
|
listParameters.Clear;
|
|
Parameters.Clear;
|
|
comboDataAccess.ItemIndex := 0;
|
|
comboSecurity.ItemIndex := 0;
|
|
editComment.Clear;
|
|
case Obj.NodeType of
|
|
lntProcedure: comboType.ItemIndex := 0;
|
|
lntFunction: comboType.ItemIndex := 1;
|
|
end;
|
|
comboDefiner.Text := '';
|
|
comboDefiner.TextHint := f_('Current user (%s)', [Obj.Connection.CurrentUserHostCombination]);
|
|
comboDefiner.Hint := f_('Leave empty for current user (%s)', [Obj.Connection.CurrentUserHostCombination]);
|
|
SynMemoBody.Text := 'BEGIN'+CRLF+CRLF+'END';
|
|
if ObjectExists then begin
|
|
// Editing existing routine
|
|
DBObject.Connection.ParseRoutineStructure(Obj, Parameters);
|
|
comboReturns.Text := Obj.Returns;
|
|
chkDeterministic.Checked := Obj.Deterministic;
|
|
if Obj.DataAccess <> '' then
|
|
comboDataAccess.ItemIndex := comboDataAccess.Items.IndexOf(Obj.DataAccess);
|
|
if Obj.Security <> '' then
|
|
comboSecurity.ItemIndex := comboSecurity.Items.IndexOf(Obj.Security);
|
|
editComment.Text := Obj.Comment;
|
|
comboDefiner.Text := Obj.Definer;
|
|
// The whole CREATE CODE may be empty if the user is not allowed to view code in SHOW CREATE FUNCTION
|
|
// => Disable the whole editor in this case.
|
|
SynMemoBody.Text := Obj.Body;
|
|
lblDisabledWhy.Visible := Obj.Body = '';
|
|
PageControlMain.Enabled := not lblDisabledWhy.Visible;
|
|
SynMemoBody.Enabled := PageControlMain.Enabled;
|
|
SynMemoBody.TopLine := FMainSynMemoPreviousTopLine;
|
|
end else begin
|
|
editName.Text := '';
|
|
end;
|
|
comboTypeSelect(comboType);
|
|
Modified := False;
|
|
btnSave.Enabled := Modified;
|
|
btnDiscard.Enabled := Modified;
|
|
// Buttons are randomly moved, since VirtualTree update, see #440
|
|
btnSave.Top := Height - btnSave.Height - 3;
|
|
btnHelp.Top := btnSave.Top;
|
|
btnDiscard.Top := btnSave.Top;
|
|
btnRunProc.Top := btnSave.Top;
|
|
btnRunProc.Left := Width - btnRunProc.Width - 3;
|
|
Mainform.actRunRoutines.Enabled := ObjectExists;
|
|
Mainform.ShowStatusMsg;
|
|
Screen.Cursor := crDefault;
|
|
end;
|
|
|
|
|
|
function TfrmRoutineEditor.DeInit: TModalResult;
|
|
begin
|
|
// Store GUI setup
|
|
TExtForm.SaveListSetup(listParameters);
|
|
Result := inherited;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.Modification(Sender: TObject);
|
|
begin
|
|
Modified := True;
|
|
btnSave.Enabled := Modified and (editName.Text <> '');
|
|
btnDiscard.Enabled := Modified;
|
|
SynMemoCreateCode.Text := ComposeCreateStatement(editName.Text);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.comboTypeSelect(Sender: TObject);
|
|
var
|
|
isfunc: Boolean;
|
|
begin
|
|
isfunc := (Sender as TComboBox).ItemIndex = 1;
|
|
lblReturns.Enabled := isfunc;
|
|
comboReturns.Enabled := isfunc;
|
|
Modification(Sender);
|
|
listParameters.Repaint;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.comboDefinerDropDown(Sender: TObject);
|
|
begin
|
|
// Populate definers from mysql.user
|
|
(Sender as TComboBox).Items.Assign(DBObject.Connection.AllUserHostCombinations);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnAddParamClick(Sender: TObject);
|
|
var
|
|
Param: TRoutineParam;
|
|
Position: Integer;
|
|
begin
|
|
Param := TRoutineParam.Create;
|
|
Param.Name := 'Param'+IntToStr(Parameters.Count+1);
|
|
Param.Datatype := 'INT';
|
|
Param.Context := 'IN';
|
|
if Assigned(listParameters.FocusedNode) then
|
|
Position := listParameters.FocusedNode.Index+1
|
|
else
|
|
Position := Parameters.Count;
|
|
Parameters.Insert(Position, Param);
|
|
// See List.OnPaint:
|
|
listParameters.Repaint;
|
|
SelectNode(listParameters, Position);
|
|
Modification(Sender);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnRemoveParamClick(Sender: TObject);
|
|
begin
|
|
Parameters.Delete(ListParameters.FocusedNode.Index);
|
|
listParameters.Repaint;
|
|
Modification(Sender);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnClearParamsClick(Sender: TObject);
|
|
begin
|
|
Parameters.Clear;
|
|
listParameters.Repaint;
|
|
Modification(Sender);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnMoveParamClick(Sender: TObject);
|
|
var
|
|
Source, Target: Integer;
|
|
begin
|
|
// Move param up or down
|
|
Source := ListParameters.FocusedNode.Index;
|
|
if Sender = btnMoveUpParam then
|
|
Target := Source -1
|
|
else
|
|
Target := Source +1;
|
|
Parameters.Exchange(Source, Target);
|
|
SelectNode(listParameters, Target);
|
|
listParameters.Repaint;
|
|
Modification(Sender);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersBeforePaint(Sender: TBaseVirtualTree;
|
|
TargetCanvas: TCanvas);
|
|
begin
|
|
(Sender as TVirtualStringTree).RootNodeCount := Parameters.Count;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersGetImageIndex(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex;
|
|
var Ghosted: Boolean; var ImageIndex: TImageIndex);
|
|
var
|
|
List: TVirtualStringTree;
|
|
Context: String;
|
|
begin
|
|
// Draw arrow icon to indicate in/out context
|
|
if not (Kind in [ikNormal, ikSelected]) then Exit;
|
|
List := Sender as TVirtualStringTree;
|
|
if Column <> 3 then
|
|
ImageIndex := -1
|
|
else begin
|
|
Context := List.Text[Node, 3];
|
|
if Context = 'IN' then ImageIndex := 120
|
|
else if Context = 'OUT' then ImageIndex := 121
|
|
else if Context = 'INOUT' then ImageIndex := 122;
|
|
end;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersGetText(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType;
|
|
var CellText: String);
|
|
var
|
|
Param: TRoutineParam;
|
|
begin
|
|
Param := Parameters[Node.Index];
|
|
case Column of
|
|
0: CellText := IntToStr(Node.Index+1);
|
|
1: CellText := Param.Name;
|
|
2: CellText := Param.Datatype;
|
|
3: begin
|
|
if comboType.ItemIndex = 1 then
|
|
CellText := 'IN' // A function can only have IN parameters
|
|
else
|
|
CellText := Param.Context;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersPaintText(Sender: TBaseVirtualTree;
|
|
const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
|
TextType: TVSTTextType);
|
|
begin
|
|
if (Column = 3) and (comboType.ItemIndex = 1) then
|
|
TargetCanvas.Font.Color := GetThemeColor(clBtnShadow);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersFocusChanged(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex);
|
|
var
|
|
HasNode: Boolean;
|
|
begin
|
|
// Enable/disable buttons
|
|
HasNode := Assigned(Node);
|
|
btnRemoveParam.Enabled := HasNode;
|
|
btnMoveUpParam.Enabled := HasNode and (Node <> Sender.GetFirst);
|
|
btnMoveDownParam.Enabled := HasNode and (Node <> Sender.GetLast);
|
|
|
|
if HasNode and (not ((comboType.ItemIndex = 1) and (Column=3))) then
|
|
Sender.EditNode(Node, Column);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersNewText(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; NewText: String);
|
|
var
|
|
Param: TRoutineParam;
|
|
rx: TRegExpr;
|
|
begin
|
|
Param := Parameters[Node.Index];
|
|
case Column of
|
|
1: Param.Name := NewText;
|
|
2: begin
|
|
rx := TRegExpr.Create;
|
|
rx.ModifierG := True;
|
|
rx.Expression := '^(\w+)(.*)$';
|
|
if rx.Exec(NewText) then
|
|
NewText := UpperCase(rx.Match[1]) + rx.Match[2]
|
|
else
|
|
NewText := UpperCase(NewText);
|
|
rx.Free;
|
|
Param.Datatype := NewText;
|
|
end;
|
|
3: Param.Context := NewText;
|
|
end;
|
|
Modification(Sender);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersCreateEditor(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; out EditLink: IVTEditLink);
|
|
var
|
|
VT: TVirtualStringTree;
|
|
EnumEditor: TEnumEditorLink;
|
|
Datatype: String;
|
|
DBDatatype: TDBDatatype;
|
|
begin
|
|
VT := Sender as TVirtualStringTree;
|
|
if Column = 1 then
|
|
EditLink := TStringEditLink.Create
|
|
else if Column = 2 then begin
|
|
EnumEditor := TEnumEditorLink.Create(VT, True, nil);
|
|
EnumEditor.AllowCustomText := True;
|
|
EnumEditor.ValueList := TStringList.Create;
|
|
for DBDatatype in DBObject.Connection.Datatypes do begin
|
|
Datatype := DBDatatype.Name;
|
|
if DBDatatype.RequiresLength then
|
|
Datatype := Datatype + '(' + DBDatatype.DefLengthSet + ')';
|
|
EnumEditor.ValueList.Add(Datatype);
|
|
end;
|
|
EditLink := EnumEditor;
|
|
end else if Column = 3 then begin
|
|
EnumEditor := TEnumEditorLink.Create(VT, True, nil);
|
|
EnumEditor.ValueList := TStringList.Create;
|
|
EnumEditor.ValueList.Add('IN');
|
|
EnumEditor.ValueList.Add('OUT');
|
|
EnumEditor.ValueList.Add('INOUT');
|
|
EditLink := EnumEditor;
|
|
end;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.listParametersEditing(Sender: TBaseVirtualTree;
|
|
Node: PVirtualNode; Column: TColumnIndex; var Allowed: Boolean);
|
|
begin
|
|
// Do not allow the number cells to be edited
|
|
Allowed := Column > 0;
|
|
if (Column = 3) and (comboType.ItemIndex = 1) then begin
|
|
Allowed := False;
|
|
MessageDialog(_('A stored function can only have IN parameters so context editing is blocked.'), mtInformation, [mbOK]);
|
|
end;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.SynMemoBodyDragOver(Sender, Source: TObject; X,
|
|
Y: Integer; State: TDragState; var Accept: Boolean);
|
|
begin
|
|
// Allow dragging parameters here
|
|
Accept := Source = listParameters;
|
|
// set cursor position
|
|
SynMemoBody.CaretX := (x - SynMemoBody.Gutter.Width) div SynMemoBody.CharWidth - 1 + SynMemoBody.LeftChar;
|
|
SynMemoBody.CaretY := y div SynMemoBody.LineHeight + SynMemoBody.TopLine;
|
|
if not SynMemoBody.Focused then
|
|
SynMemoBody.SetFocus;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.SynMemoBodyDragDrop(Sender, Source: TObject; X,
|
|
Y: Integer);
|
|
var
|
|
list: TVirtualStringTree;
|
|
memo: TSynMemo;
|
|
begin
|
|
list := Source as TVirtualStringTree;
|
|
memo := Sender as TSynMemo;
|
|
memo.SelText := list.Text[list.FocusedNode, 1];
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnSaveClick(Sender: TObject);
|
|
begin
|
|
// Apply or OK button clicked
|
|
ApplyModifications;
|
|
end;
|
|
|
|
|
|
function TfrmRoutineEditor.ApplyModifications: TModalResult;
|
|
var
|
|
TempName: String;
|
|
i: Integer;
|
|
allRoutineNames: TStringList;
|
|
ProcOrFunc: String;
|
|
TargetExists: Boolean;
|
|
begin
|
|
// Save changes
|
|
btnSave.Enabled := False;
|
|
btnDiscard.Enabled := False;
|
|
Result := mrOk;
|
|
case comboType.ItemIndex of
|
|
0: ProcOrFunc := 'PROCEDURE';
|
|
else ProcOrFunc := 'FUNCTION';
|
|
end;
|
|
|
|
// There is no way to ALTER parameters or the name of it.
|
|
// Create a temp routine, check for syntax errors, then drop the old routine and create it.
|
|
// See also: http://dev.mysql.com/doc/refman/5.0/en/alter-procedure.html
|
|
try
|
|
if ObjectExists then begin
|
|
// Create temp name
|
|
i := 0;
|
|
allRoutineNames := DBObject.Connection.GetCol('SELECT ROUTINE_NAME FROM '+DBObject.Connection.QuoteIdent(DBObject.Connection.InfSch)+'.'+DBObject.Connection.QuoteIdent('ROUTINES')+
|
|
' WHERE ROUTINE_SCHEMA = '+DBObject.Connection.EscapeString(DBObject.Connection.Database)+
|
|
' AND ROUTINE_TYPE = '+DBObject.Connection.EscapeString(ProcOrFunc)
|
|
);
|
|
TargetExists := ((editName.Text <> DBObject.Name) or (ProcOrFunc <> FAlterRoutineType)) and
|
|
(allRoutineNames.IndexOf(editName.Text) > -1);
|
|
if TargetExists then begin
|
|
Result := MessageDialog(f_('Overwrite "%s"?', [editName.Text]), f_('Routine "%s" already exists.', [editName.Text]),
|
|
mtConfirmation, [mbYes, mbNo, mbCancel]);
|
|
if Result = mrNo then
|
|
Exit;
|
|
end;
|
|
while True do begin
|
|
inc(i);
|
|
TempName := APPNAME + '_temproutine_' + IntToStr(i);
|
|
if allRoutineNames.IndexOf(TempName) = -1 then
|
|
break;
|
|
end;
|
|
DBObject.Connection.Query(ComposeCreateStatement(tempName));
|
|
// Drop temporary routine, used for syntax checking
|
|
DBObject.Connection.Query('DROP '+ProcOrFunc+' IF EXISTS '+DBObject.Connection.QuoteIdent(TempName));
|
|
// Drop edited routine
|
|
DBObject.Connection.Query('DROP '+FAlterRoutineType+' IF EXISTS '+DBObject.Connection.QuoteIdent(DBObject.Name));
|
|
if TargetExists then begin
|
|
// Drop target routine - overwriting has been confirmed, see above
|
|
DBObject.Connection.Query('DROP '+ProcOrFunc+' IF EXISTS '+DBObject.Connection.QuoteIdent(editName.Text));
|
|
end;
|
|
end;
|
|
DBObject.Connection.Query(ComposeCreateStatement(editName.Text));
|
|
// Set editing name if create/alter query was successful
|
|
DBObject.Name := editName.Text;
|
|
DBObject.UnloadDetails;
|
|
FAlterRoutineType := ProcOrFunc;
|
|
if FAlterRoutineType = 'PROCEDURE' then DBObject.NodeType := lntProcedure
|
|
else DBObject.NodeType := lntFunction;
|
|
Mainform.UpdateEditorTab;
|
|
Mainform.RefreshTree(DBObject);
|
|
Modified := False;
|
|
Mainform.actRunRoutines.Enabled := True;
|
|
except
|
|
on E:EDbError do begin
|
|
ErrorDialog(E.Message);
|
|
Result := mrAbort;
|
|
end;
|
|
end;
|
|
btnSave.Enabled := Modified;
|
|
btnDiscard.Enabled := Modified;
|
|
end;
|
|
|
|
|
|
function TfrmRoutineEditor.ComposeCreateStatement(NameOfObject: String): String;
|
|
var
|
|
ProcOrFunc, tmp: String;
|
|
i: Integer;
|
|
Params: TStringList;
|
|
begin
|
|
case comboType.ItemIndex of
|
|
0: ProcOrFunc := 'PROCEDURE';
|
|
else ProcOrFunc := 'FUNCTION';
|
|
end;
|
|
Result := 'CREATE ';
|
|
if comboDefiner.Text <> '' then
|
|
Result := Result + 'DEFINER='+DBObject.Connection.QuoteIdent(comboDefiner.Text, True, '@')+' ';
|
|
Result := Result + ProcOrFunc+' '+DBObject.Connection.QuoteIdent(NameOfObject)+'(';
|
|
Params := TStringList.Create;
|
|
for i:=0 to Parameters.Count-1 do begin
|
|
tmp := '';
|
|
if ProcOrFunc = 'PROCEDURE' then
|
|
tmp := tmp + Parameters[i].Context + ' ';
|
|
tmp := tmp + DBObject.Connection.QuoteIdent(Parameters[i].Name) + ' ' + Parameters[i].Datatype;
|
|
Params.Add(tmp);
|
|
end;
|
|
if Params.Count > 0 then
|
|
Result := Result + CRLF + #9 + Implode(','+CRLF+#9, Params) + CRLF;
|
|
Result := Result + ')'+CRLF;
|
|
if comboReturns.Enabled then
|
|
Result := Result + 'RETURNS '+comboReturns.Text+CRLF;
|
|
Result := Result + 'LANGUAGE SQL'+CRLF;
|
|
if not chkDeterministic.Checked then
|
|
Result := Result + 'NOT ';
|
|
Result := Result + 'DETERMINISTIC'+CRLF
|
|
+ UpperCase(comboDataAccess.Text)+CRLF
|
|
+ 'SQL SECURITY ' + UpperCase(comboSecurity.Text)+CRLF
|
|
+ 'COMMENT ' + DBObject.Connection.EscapeString(editComment.Text)+CRLF
|
|
+ SynMemoBody.Text;
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnDiscardClick(Sender: TObject);
|
|
begin
|
|
Modified := False;
|
|
Init(DBObject);
|
|
end;
|
|
|
|
|
|
procedure TfrmRoutineEditor.btnHelpClick(Sender: TObject);
|
|
begin
|
|
// Help button
|
|
Help(Self, 'createroutine');
|
|
end;
|
|
|
|
|
|
end.
|