File: EditorSql.pas

package info (click to toggle)
mysql-gui-tools 5.0r14%2BopenSUSE-2.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 116,956 kB
  • ctags: 48,715
  • sloc: sql: 341,918; pascal: 276,698; ansic: 91,020; cpp: 90,451; objc: 33,236; sh: 29,481; yacc: 10,756; xml: 10,589; java: 10,079; php: 2,806; python: 2,092; makefile: 1,783; perl: 4
file content (268 lines) | stat: -rw-r--r-- 7,920 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
unit EditorSql;

// Copyright (C) 2008 MySQL AB, 2008 Sun Microsystems, Inc.

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 FormCloseQuery(Sender: TObject; var CanClose: Boolean);
    procedure ExecuteSQLBtnClick(Sender: TObject);
    procedure CancelBtnClick(Sender: TObject);
    procedure SqlUCEKeyPress(Sender: TObject; var Key: Char);

  protected
    procedure SetSql(Sql: WideString);
    procedure SetPreSql(Sql: WideString);
    procedure SetSqlSchema(Sch: WideString);

  private
    FMySQLConn: TMySQLConn;
    FRefreshSchemaObjects: TNotifyEvent;
    FDropSQL: WideString;
    FSqlSchema: WideString;
    FOriginalName: WideString;  // currently used oly for views
    FOriginalSQL: WideString;
    ContentType: EditorContentType;
    FChanged: Boolean;
    function GetSql: WideString;
    function ApplyChanges: Boolean;
  public
    property SqlSchema: WideString read FSqlSchema write SetSqlSchema;
    property DropSQL: WideString read FDropSQL 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;
  FChanged := False;
end;

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

procedure TEditorSqlForm.SetContentType(ct: EditorContentType);

begin
  ContentType := ct;
end;

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

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

var
  Result: Integer;

begin
  CanClose := True;
  if FChanged then
  begin
    Result := ShowModalDialog(_('Pending Changes'), _('There are unapplied changes. Do you want to apply them now?'),
      myx_mtConfirmation, _('Apply') + #13#10 + _('Discard')+ #13#10 + _('Cancel'));
    case Result of
      1:
        CanClose := ApplyChanges;
      2: // Ignore
        FChanged := False;
      3:
        CanClose := False;
    end;
  end;
end;

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

procedure TEditorSqlForm.Show;

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

  inherited;
end;

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

procedure TEditorSqlForm.SqlUCEKeyPress(Sender: TObject; var Key: Char);

begin
  FChanged := True;
end;

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

function TEditorSqlForm.GetSql: WideString;

begin
  Result := SqlUCE.Content.Text;
end;

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

procedure TEditorSqlForm.SetSql(Sql: WideString);

begin
  SqlUCE.Content.Text := Sql;
  FOriginalSQL := Sql;
  FOriginalName := myx_dbm_get_view_name_from_query(Sql);
  FChanged := False;
end;

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

procedure TEditorSqlForm.SetSqlSchema(Sch: WideString);

begin
  FSqlSchema:=Sch;
end;

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

procedure TEditorSqlForm.SetPreSql(Sql: WideString);

begin
  FDropSQL := Sql;
end;

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

procedure TEditorSqlForm.ExecuteSQLBtnClick(Sender: TObject);

begin
  if ApplyChanges then
    Close;
end;

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

function TEditorSqlForm.ApplyChanges: Boolean;

// Applies the current changes in the editor to the object and returns True if that was succesfull.

var
  NewObjectName: WideString;
  DropOriginalView: Boolean;
  OldDropSQL: WideString;

begin
  Result := not FChanged;

  if not FChanged then
    if ShowOptionalModalDialog(_('No changes to apply'),
      _('There were no changes. Do you still want to send the SQL command? '),
      myx_mtWarning, _('Yes') + #13#10 + _('No'), True, '') = 2 then
      Exit;

  DropOriginalView := False;
  OldDropSQL := FDropSQL;

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

    if FDropSQL <> '' then
    begin
      NewObjectName := myx_dbm_get_view_name_from_query(Sql);
      if (FOriginalName <> '') and (NewObjectName <> FOriginalName) then
      begin
        if ShowOptionalModalDialog(_('Object name has changed'),
          _('Would you like to keep the original 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);
          FDropSQL := '';
        end
        else
        begin
          // Assume editing a stored routine here.
          // Drop old definition, we have a copy for restauration if necessary.
          FMySQLConn.ExecuteDirect(DropSQL);
          FDropSQL := '';
        end
    end;

    if FMySQLConn.ExecuteDirect(Sql) then
    begin
      if DropOriginalView then
      begin
        FMySQLConn.ExecuteDirect(FDropSQL);
        FDropSQL := '';
      end;

      if (Assigned(FRefreshSchemaObjects)) then
        FRefreshSchemaObjects(Self);
        
      Result := True;
    end
    else
    begin
      // A problem appeared so we need to restore the original SQL unless it isn't dropped yet.
      if FDropSQL = '' then
      begin
        FMySQLConn.ExecuteDirect(FOriginalSQL);
        FDropSQL := OldDropSQL;
      end;
    end;
  end;

  if Result then
    FChanged := False;
end;

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

procedure TEditorSqlForm.CancelBtnClick(Sender: TObject);

begin
  FChanged := False;
  Close;
end;

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

end.