File: EditorSql.pas

package info (click to toggle)
mysql-gui-tools 5.0r12-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 105,540 kB
  • ctags: 50,897
  • sloc: sql: 348,439; pascal: 285,780; cpp: 94,578; ansic: 90,768; objc: 33,761; sh: 25,629; xml: 10,924; yacc: 10,755; java: 9,986; php: 2,806; python: 2,068; makefile: 1,945; perl: 3
file content (224 lines) | stat: -rw-r--r-- 5,855 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
unit EditorSql;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, TntExtCtrls, UniCodeEditor, UCEHighlighter,
  UCESQLHighlighter, StdCtrls, TntStdCtrls, MySQLConnection,
  AuxFuncs, TntForms, Options, myx_public_interface, AuxApplicationFuncs,
  gnugettext;

type
  EditorContentType = (StoredRoutine, View);

  TEditorSqlForm = class(TTntForm)
    BottomPnl: TTntPanel;
    ExecuteSQLBtn: TTntButton;
    CancelBtn: TTntButton;
    UCESQLHighlighter: TUCESQLHighlighter;
    SqlUCE: TUniCodeEdit;
    SepBevel: TTntBevel;
    procedure FormCreate(Sender: TObject);
    procedure FormDestroy(Sender: TObject);
    procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
    procedure ExecuteSQLBtnClick(Sender: TObject);
    procedure CancelBtnClick(Sender: TObject);

  protected
    function GetSql: WideString;
    procedure SetSql(Sql: WideString);
    function GetPreSql: WideString;
    procedure SetPreSql(Sql: WideString);
    function GetSqlSchema: WideString;
    procedure SetSqlSchema(Sch: WideString);

  private
    { Private declarations }
    FMySQLConn: TMySQLConn;
    FRefreshSchemaObjects: TNotifyEvent;
    FPreSql: string;
    FSqlSchema: string;
    OrgObjectName: string;  // currently used oly for views
    ContentType: EditorContentType;

  public
    { Public declarations }
    property SqlSchema: WideString read GetSqlSchema write SetSqlSchema;
    property PreSql: WideString read GetPreSql write SetPreSql;
    property Sql: WideString read GetSql write SetSql;
    property MySQLConn: TMySQLConn read FMySQLConn write FMySQLConn;
    property RefreshSchemaObjects: TNotifyEvent read FRefreshSchemaObjects write FRefreshSchemaObjects;
    procedure Show;
    procedure SetContentType(ct: EditorContentType);    
  end;

implementation

{$R *.dfm}

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.FormCreate(Sender: TObject);

begin
  InitForm(self);

  FMySQLConn := nil;
  FRefreshSchemaObjects := nil;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.FormDestroy(Sender: TObject);

begin
  //
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.SetContentType(ct: EditorContentType);

begin
  //
  ContentType := ct;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.FormCloseQuery(Sender: TObject;
  var CanClose: Boolean);

begin
  //
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.Show;

begin
  if(MYXCommonOptions.EditorKeepRoutineEditorOnTop)then
    FormStyle := fsStayOnTop
  else
    FormStyle := fsNormal;

  inherited;
end;

// -----------------------------------------------------------------------------

function TEditorSqlForm.GetSql: WideString;
begin
  Result := SqlUCE.Content.Text;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.SetSql(Sql: WideString);

begin
  SqlUCE.Content.Text := Sql;
  OrgObjectName := myx_dbm_get_view_name_from_query(Sql);

end;

// -----------------------------------------------------------------------------

function TEditorSqlForm.GetPreSql: WideString;
begin
  Result := FPreSql;
end;

function TEditorSqlForm.GetSqlSchema: WideString;
begin
  Result := FSqlSchema;
end;

procedure TEditorSqlForm.SetSqlSchema(Sch: WideString);
begin
  FSqlSchema:=Sch;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.SetPreSql(Sql: WideString);
begin
  FPreSql := Sql;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.ExecuteSQLBtnClick(Sender: TObject);

var NewObjectName: string;
    DropOriginalView: Boolean;

begin
  DropOriginalView := false;

  if (FMySQLConn <> nil) then
  begin
    if(SqlSchema <> '') then
    begin
      MySQLConn.DefaultSchema:=SqlSchema;
    end;

    if (PreSql <> '') then
      begin
        NewObjectName := myx_dbm_get_view_name_from_query(Sql);
        if (OrgObjectName <> '') and (NewObjectName <> OrgObjectName) then
        begin
        if(ShowOptionalModalDialog(_('View name has changed'),
          _('Would you like to keep the original view object? '),
          myx_mtWarning, _('Yes')+#13#10+_('No'),
          True,
          '') = 2)then
        begin
          DropOriginalView := true;
        end
      end
      else if(ContentType = View) then
      begin
        // old view definition is not dropped silently anymore
        // instead we add 'or replace' to view's definition
        // when start editing
        //FMySQLConn.ExecuteDirect(PreSql);
        PreSQL := '';
      end
      else
      begin
        // assume ediding a stored routine here
        // drop old definition
        FMySQLConn.ExecuteDirect(PreSql);
        PreSQL := '';
      end
    end;

    if (FMySQLConn.ExecuteDirect(Sql) = True) then
    begin
      if DropOriginalView then
      begin
        FMySQLConn.ExecuteDirect(PreSql);
        PreSQL := '';
      end;

      if (Assigned(FRefreshSchemaObjects)) then
        FRefreshSchemaObjects(self);
      Close;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TEditorSqlForm.CancelBtnClick(Sender: TObject);

begin
  Close;
end;

// -----------------------------------------------------------------------------

end.