ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/design/ibsqleditor.pas
(Generate patch)

Comparing ibx/trunk/design/ibsqleditor.pas (file contents):
Revision 7 by tony, Sun Aug 5 18:28:19 2012 UTC vs.
Revision 19 by tony, Mon Jul 7 13:00:15 2014 UTC

# Line 1 | Line 1
1 < (*
2 < *  IBX For Lazarus (Firebird Express)
3 < *
4 < *  The contents of this file are subject to the Initial Developer's
5 < *  Public License Version 1.0 (the "License"); you may not use this
6 < *  file except in compliance with the License. You may obtain a copy
7 < *  of the License here:
8 < *
9 < *    http://www.firebirdsql.org/index.php?op=doc&id=idpl
10 < *
11 < *  Software distributed under the License is distributed on an "AS
12 < *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13 < *  implied. See the License for the specific language governing rights
14 < *  and limitations under the License.
15 < *
16 < *  The Initial Developer of the Original Code is Tony Whyman.
17 < *
18 < *  The Original Code is (C) 2011 Tony Whyman, MWA Software
19 < *  (http://www.mwasoftware.co.uk).
20 < *
21 < *  All Rights Reserved.
22 < *
23 < *  Contributor(s): ______________________________________.
24 < *
25 < *)
26 < unit IBSQLEditor;
27 <
28 < {$mode objfpc}{$H+}
29 <
30 < interface
31 <
32 < uses
33 <  Classes, SysUtils, FileUtil,  Forms, Controls, Graphics, Dialogs,
34 <  StdCtrls, ExtCtrls, ComCtrls, IBSystemTables, IBSQL, IBDatabase;
35 <
36 < type
37 <
38 <  { TIBSQLEditorForm }
39 <
40 <  TIBSQLEditorForm = class(TForm)
41 <    Button1: TButton;
42 <    Button2: TButton;
43 <    GenerateBtn: TButton;
44 <    IBTransaction1: TIBTransaction;
45 <    Label5: TLabel;
46 <    SelectProcedure: TLabel;
47 <    TestBtn: TButton;
48 <    IncludePrimaryKeys: TCheckBox;
49 <    Label1: TLabel;
50 <    Label10: TLabel;
51 <    Label11: TLabel;
52 <    Label12: TLabel;
53 <    Label14: TLabel;
54 <    Label15: TLabel;
55 <    Label16: TLabel;
56 <    Label17: TLabel;
57 <    Label18: TLabel;
58 <    Label2: TLabel;
59 <    Label3: TLabel;
60 <    Label4: TLabel;
61 <    Label8: TLabel;
62 <    Label9: TLabel;
63 <    SelectFieldsList: TListBox;
64 <    ProcOutputList: TListBox;
65 <    SelectPrimaryKeys: TListBox;
66 <    InsertFieldsList: TListBox;
67 <    ModifyFieldsList: TListBox;
68 <    ModifyPrimaryKeys: TListBox;
69 <    DeletePrimaryKeys: TListBox;
70 <    ProcInputList: TListBox;
71 <    PageControl: TPageControl;
72 <    QuoteFields: TCheckBox;
73 <    SQLText: TMemo;
74 <    SelectPage: TTabSheet;
75 <    InsertPage: TTabSheet;
76 <    ModifyPage: TTabSheet;
77 <    DeletePage: TTabSheet;
78 <    ExecutePage: TTabSheet;
79 <    SelectTableNames: TComboBox;
80 <    InsertTableNames: TComboBox;
81 <    ModifyTableNames: TComboBox;
82 <    DeleteTableNames: TComboBox;
83 <    ProcedureNames: TComboBox;
84 <    procedure GenerateBtnClick(Sender: TObject);
85 <    procedure TestBtnClick(Sender: TObject);
86 <    procedure DeletePageShow(Sender: TObject);
87 <    procedure DeleteTableNamesCloseUp(Sender: TObject);
88 <    procedure ExecutePageShow(Sender: TObject);
89 <    procedure FormShow(Sender: TObject);
90 <    procedure IncludePrimaryKeysClick(Sender: TObject);
91 <    procedure InsertPageShow(Sender: TObject);
92 <    procedure Label13Click(Sender: TObject);
93 <    procedure ModifyPageShow(Sender: TObject);
94 <    procedure ModifyTableNamesCloseUp(Sender: TObject);
95 <    procedure ProcedureNamesCloseUp(Sender: TObject);
96 <    procedure SelectFieldsListDblClick(Sender: TObject);
97 <    procedure SelectPageShow(Sender: TObject);
98 <    procedure SelectTableNamesCloseUp(Sender: TObject);
99 <    procedure InsertTableNamesCloseUp(Sender: TObject);
100 <  private
101 <    { private declarations }
102 <    FTableName: string;
103 <    FIBSystemTables: TIBSystemTables;
104 <    FExecuteOnly: boolean;
105 <  public
106 <    { public declarations }
107 <    constructor Create(TheOwner: TComponent); override;
108 <    destructor Destroy; override;
109 <    procedure SetDatabase(Database: TIBDatabase);
110 <  end;
111 <
112 < var
113 <  IBSQLEditorForm: TIBSQLEditorForm;
114 <
115 < function EditIBSQL(DataSet: TIBSQL): boolean;
116 <
117 < implementation
118 <
119 < {$R *.lfm}
120 <
121 < uses InterfaceBase;
122 <
123 < function EditIBSQL(DataSet: TIBSQL): boolean;
124 < begin
125 <  Result := false;
126 <  if assigned(DataSet.Database)  then
127 <    try
128 <      DataSet.Database.Connected := true;
129 <    except on E: Exception do
130 <      ShowMessage(E.Message)
131 <    end;
132 <
133 <  with TIBSQLEditorForm.Create(Application) do
134 <  try
135 <    SetDatabase(DataSet.Database);
136 <    SQLText.Lines.Assign(DataSet.SQL);
137 <    Result := ShowModal = mrOK;
138 <    if Result then
139 <      DataSet.SQL.Assign(SQLText.Lines)
140 <  finally
141 <    Free
142 <  end;
143 <
144 < end;
145 <
146 < { TIBSQLEditorForm }
147 <
148 < procedure TIBSQLEditorForm.FormShow(Sender: TObject);
149 < var IsProcedureName: boolean;
150 < begin
151 <  if WidgetSet.LCLPlatform = lpGtk2 then
152 <    PageControl.TabPosition := tpLeft
153 <  else
154 <  PageControl.TabPosition := tpTop;
155 <  GenerateBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
156 <  TestBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
157 <  if Trim(SQLText.Text) <> '' then
158 <  begin
159 <    case FIBSystemTables.GetStatementType(SQLText.Text,IsProcedureName) of
160 <    SQLSelect:
161 <      if IsProcedureName then
162 <        PageControl.ActivePage := ExecutePage
163 <      else
164 <        PageControl.ActivePage := SelectPage;
165 <    SQLInsert:  PageControl.ActivePage := InsertPage;
166 <    SQLUpdate:  PageControl.ActivePage := ModifyPage;
167 <    SQLDelete:  PageControl.ActivePage := DeletePage;
168 <    SQLExecProcedure: PageControl.ActivePage := ExecutePage;
169 <    else
170 <      PageControl.ActivePage := SelectPage;
171 <    end;
172 <    FIBSystemTables.GetTableAndColumns(SQLText.Text,FTableName,nil)
173 <  end;
174 < end;
175 <
176 < procedure TIBSQLEditorForm.IncludePrimaryKeysClick(Sender: TObject);
177 < begin
178 <  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked);
179 <  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
180 < end;
181 <
182 < procedure TIBSQLEditorForm.DeletePageShow(Sender: TObject);
183 < var TableName: string;
184 < begin
185 <  FIBSystemTables.GetTableNames(DeleteTableNames.Items);
186 <  if Trim(SQLText.Text) = '' then
187 <  begin
188 <    if FTableName <> '' then
189 <      DeleteTableNames.ItemIndex := DeleteTableNames.Items.IndexOf(FTableName)
190 <    else
191 <    if DeleteTableNames.Items.Count > 0 then
192 <      DeleteTableNames.ItemIndex := 0
193 <  end
194 <  else
195 <  begin
196 <    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
197 <    DeleteTableNames.ItemIndex := DeleteTableNames.Items.IndexOf(TableName);
198 <  end;
199 <  FIBSystemTables.GetPrimaryKeys(DeleteTableNames.Text,DeletePrimaryKeys.Items);
200 <
201 < end;
202 <
203 < procedure TIBSQLEditorForm.GenerateBtnClick(Sender: TObject);
204 < var FieldNames: TStrings;
205 < begin
206 <  FieldNames := nil;
207 <  if PageControl.ActivePage = SelectPage then
208 <  begin
209 <    FieldNames := FIBSystemTables.GetFieldNames(SelectFieldsList);
210 <    FIBSystemTables.GenerateSelectSQL(SelectTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
211 <  end
212 <  else
213 <  if PageControl.ActivePage = InsertPage then
214 <  begin
215 <    FieldNames := FIBSystemTables.GetFieldNames(InsertFieldsList);
216 <    FIBSystemTables.GenerateInsertSQL(InsertTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
217 <  end
218 <  else
219 <  if PageControl.ActivePage = ModifyPage then
220 <  begin
221 <    FieldNames := FIBSystemTables.GetFieldNames(ModifyFieldsList);
222 <    FIBSystemTables.GenerateModifySQL(ModifyTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
223 <  end
224 <  else
225 <  if PageControl.ActivePage = DeletePage then
226 <     FIBSystemTables.GenerateDeleteSQL(DeleteTableNames.Text,QuoteFields.Checked,SQLText.Lines)
227 <  else
228 <  if PageControl.ActivePage = ExecutePage then
229 <     FIBSystemTables.GenerateExecuteSQL(ProcedureNames.Text,QuoteFields.Checked, FExecuteOnly,
230 <             ProcInputList.Items,ProcOutputList.Items,SQLText.Lines);
231 <
232 <  if FieldNames <> nil then
233 <    FieldNames.Free
234 < end;
235 <
236 < procedure TIBSQLEditorForm.TestBtnClick(Sender: TObject);
237 < begin
238 <  FIBSystemTables.TestSQL(SQLText.Text);
239 < end;
240 <
241 < procedure TIBSQLEditorForm.DeleteTableNamesCloseUp(Sender: TObject);
242 < begin
243 <  FTableName := DeleteTableNames.Text;
244 <  FIBSystemTables.GetPrimaryKeys(DeleteTableNames.Text,DeletePrimaryKeys.Items);
245 < end;
246 <
247 < procedure TIBSQLEditorForm.ExecutePageShow(Sender: TObject);
248 < var ProcName: string;
249 <    IsProcedureName: boolean;
250 < begin
251 <  FIBSystemTables.GetProcedureNames(ProcedureNames.Items);
252 <  if ProcedureNames.Items.Count > 0 then
253 <  begin
254 <    if (FIBSystemTables.GetStatementType(SQLText.Text,IsProcedureName) = SQLExecProcedure) or IsProcedureName then
255 <    begin
256 <      FIBSystemTables.GetTableAndColumns(SQLText.Text,ProcName,nil);
257 <      ProcedureNames.ItemIndex := ProcedureNames.Items.IndexOf(ProcName)
258 <    end
259 <    else
260 <      ProcedureNames.ItemIndex := 0;
261 <  end;
262 <  FIBSystemTables.GetProcParams(ProcedureNames.Text,FExecuteOnly,ProcInputList.Items,ProcOutputList.Items);
263 <  SelectProcedure.Visible :=  not FExecuteOnly;
264 < end;
265 <
266 < procedure TIBSQLEditorForm.InsertPageShow(Sender: TObject);
267 < var TableName: string;
268 < begin
269 <  FIBSystemTables.GetTableNames(InsertTableNames.Items);
270 <  if Trim(SQLText.Text) = '' then
271 <  begin
272 <    if FTableName <> '' then
273 <      InsertTableNames.ItemIndex := InsertTableNames.Items.IndexOf(FTableName)
274 <    else
275 <    if InsertTableNames.Items.Count > 0 then
276 <      InsertTableNames.ItemIndex := 0
277 <  end
278 <  else
279 <  begin
280 <    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
281 <    InsertTableNames.ItemIndex := InsertTableNames.Items.IndexOf(TableName);
282 <  end;
283 <  FIBSystemTables.GetFieldNames(InsertTableNames.Text,InsertFieldsList.Items);
284 <
285 < end;
286 <
287 < procedure TIBSQLEditorForm.Label13Click(Sender: TObject);
288 < begin
289 <  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked);
290 <  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
291 < end;
292 <
293 < procedure TIBSQLEditorForm.ModifyPageShow(Sender: TObject);
294 < var TableName: string;
295 < begin
296 <   FIBSystemTables.GetTableNames(ModifyTableNames.Items);
297 <  if Trim(SQLText.Text) = '' then
298 <  begin
299 <    if FTableName <> '' then
300 <      ModifyTableNames.ItemIndex := ModifyTableNames.Items.IndexOf(FTableName)
301 <    else
302 <    if ModifyTableNames.Items.Count > 0 then
303 <      ModifyTableNames.ItemIndex := 0;
304 <  end
305 <  else
306 <  begin
307 <    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
308 <    ModifyTableNames.ItemIndex := ModifyTableNames.Items.IndexOf(TableName);
309 <  end;
310 <  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked,false);
311 <  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
312 < end;
313 <
314 < procedure TIBSQLEditorForm.ModifyTableNamesCloseUp(Sender: TObject);
315 < begin
316 <  FTableName := ModifyTableNames.Text;
317 <  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked,false);
318 <  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
319 < end;
320 <
321 < procedure TIBSQLEditorForm.ProcedureNamesCloseUp(Sender: TObject);
322 < begin
323 <    FIBSystemTables.GetProcParams(ProcedureNames.Text,FExecuteOnly,ProcInputList.Items,ProcOutputList.Items);
324 <    SelectProcedure.Visible := not FExecuteOnly
325 < end;
326 <
327 < procedure TIBSQLEditorForm.SelectFieldsListDblClick(Sender: TObject);
328 < begin
329 <  SQLText.SelText:= (Sender as TListBox).Items[(Sender as TListBox).ItemIndex];
330 < end;
331 <
332 < procedure TIBSQLEditorForm.SelectPageShow(Sender: TObject);
333 < var TableName: string;
334 < begin
335 <  FIBSystemTables.GetTableNames(SelectTableNames.Items);
336 <  if Trim(SQLText.Text) = '' then
337 <  begin
338 <    if FTableName <> '' then
339 <      SelectTableNames.ItemIndex := SelectTableNames.Items.IndexOf(FTableName)
340 <    else
341 <    if SelectTableNames.Items.Count > 0 then
342 <      SelectTableNames.ItemIndex := 0;
343 <  end
344 <  else
345 <  begin
346 <    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
347 <    SelectTableNames.ItemIndex := SelectTableNames.Items.IndexOf(TableName);
348 <  end;
349 <  FIBSystemTables.GetFieldNames(SelectTableNames.Text,SelectFieldsList.Items);
350 <  FIBSystemTables.GetPrimaryKeys(SelectTableNames.Text,SelectPrimaryKeys.Items);
351 < end;
352 <
353 < procedure TIBSQLEditorForm.SelectTableNamesCloseUp(Sender: TObject);
354 < begin
355 <  FTableName := SelectTableNames.Text;
356 <  try
357 <  FIBSystemTables.GetFieldNames(SelectTableNames.Text,SelectFieldsList.Items);
358 <  FIBSystemTables.GetPrimaryKeys(SelectTableNames.Text,SelectPrimaryKeys.Items);
359 <  except {ignore}  end;
360 < end;
361 <
362 < procedure TIBSQLEditorForm.InsertTableNamesCloseUp(Sender: TObject);
363 < begin
364 <  FTableName := InsertTableNames.Text;
365 <  FIBSystemTables.GetFieldNames(InsertTableNames.Text,InsertFieldsList.Items);
366 < end;
367 <
368 < constructor TIBSQLEditorForm.Create(TheOwner: TComponent);
369 < begin
370 <  inherited Create(TheOwner);
371 <  FIBSystemTables := TIBSystemTables.Create;
372 < end;
373 <
374 < destructor TIBSQLEditorForm.Destroy;
375 < begin
376 <  if assigned(FIBSystemTables) then FIBSystemTables.Free;
377 <  inherited Destroy;
378 < end;
379 <
380 < procedure TIBSQLEditorForm.SetDatabase(Database: TIBDatabase);
381 < begin
382 <  IBTransaction1.DefaultDatabase := Database;
383 <  FIBSystemTables.SelectDatabase(Database,IBTransaction1)
384 < end;
385 <
386 < end.
387 <
1 > (*
2 > *  IBX For Lazarus (Firebird Express)
3 > *
4 > *  The contents of this file are subject to the Initial Developer's
5 > *  Public License Version 1.0 (the "License"); you may not use this
6 > *  file except in compliance with the License. You may obtain a copy
7 > *  of the License here:
8 > *
9 > *    http://www.firebirdsql.org/index.php?op=doc&id=idpl
10 > *
11 > *  Software distributed under the License is distributed on an "AS
12 > *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13 > *  implied. See the License for the specific language governing rights
14 > *  and limitations under the License.
15 > *
16 > *  The Initial Developer of the Original Code is Tony Whyman.
17 > *
18 > *  The Original Code is (C) 2011 Tony Whyman, MWA Software
19 > *  (http://www.mwasoftware.co.uk).
20 > *
21 > *  All Rights Reserved.
22 > *
23 > *  Contributor(s): ______________________________________.
24 > *
25 > *)
26 > unit IBSQLEditor;
27 >
28 > {$mode objfpc}{$H+}
29 >
30 > interface
31 >
32 > uses
33 >  Classes, SysUtils, FileUtil,  Forms, Controls, Graphics, Dialogs,
34 >  StdCtrls, ExtCtrls, ComCtrls, IBSystemTables, IBSQL, IBDatabase;
35 >
36 > type
37 >
38 >  { TIBSQLEditorForm }
39 >
40 >  TIBSQLEditorForm = class(TForm)
41 >    Button1: TButton;
42 >    Button2: TButton;
43 >    GenerateParams: TCheckBox;
44 >    GenerateBtn: TButton;
45 >    IBTransaction1: TIBTransaction;
46 >    Label5: TLabel;
47 >    SelectProcedure: TLabel;
48 >    TestBtn: TButton;
49 >    IncludePrimaryKeys: TCheckBox;
50 >    Label1: TLabel;
51 >    Label10: TLabel;
52 >    Label11: TLabel;
53 >    Label12: TLabel;
54 >    Label14: TLabel;
55 >    Label15: TLabel;
56 >    Label16: TLabel;
57 >    Label17: TLabel;
58 >    Label18: TLabel;
59 >    Label2: TLabel;
60 >    Label3: TLabel;
61 >    Label4: TLabel;
62 >    Label8: TLabel;
63 >    Label9: TLabel;
64 >    SelectFieldsList: TListBox;
65 >    ProcOutputList: TListBox;
66 >    SelectPrimaryKeys: TListBox;
67 >    InsertFieldsList: TListBox;
68 >    ModifyFieldsList: TListBox;
69 >    ModifyPrimaryKeys: TListBox;
70 >    DeletePrimaryKeys: TListBox;
71 >    ProcInputList: TListBox;
72 >    PageControl: TPageControl;
73 >    QuoteFields: TCheckBox;
74 >    SQLText: TMemo;
75 >    SelectPage: TTabSheet;
76 >    InsertPage: TTabSheet;
77 >    ModifyPage: TTabSheet;
78 >    DeletePage: TTabSheet;
79 >    ExecutePage: TTabSheet;
80 >    SelectTableNames: TComboBox;
81 >    InsertTableNames: TComboBox;
82 >    ModifyTableNames: TComboBox;
83 >    DeleteTableNames: TComboBox;
84 >    ProcedureNames: TComboBox;
85 >    procedure GenerateBtnClick(Sender: TObject);
86 >    procedure TestBtnClick(Sender: TObject);
87 >    procedure DeletePageShow(Sender: TObject);
88 >    procedure DeleteTableNamesCloseUp(Sender: TObject);
89 >    procedure ExecutePageShow(Sender: TObject);
90 >    procedure FormShow(Sender: TObject);
91 >    procedure IncludePrimaryKeysClick(Sender: TObject);
92 >    procedure InsertPageShow(Sender: TObject);
93 >    procedure Label13Click(Sender: TObject);
94 >    procedure ModifyPageShow(Sender: TObject);
95 >    procedure ModifyTableNamesCloseUp(Sender: TObject);
96 >    procedure ProcedureNamesCloseUp(Sender: TObject);
97 >    procedure SelectFieldsListDblClick(Sender: TObject);
98 >    procedure SelectPageShow(Sender: TObject);
99 >    procedure SelectTableNamesCloseUp(Sender: TObject);
100 >    procedure InsertTableNamesCloseUp(Sender: TObject);
101 >  private
102 >    { private declarations }
103 >    FTableName: string;
104 >    FIBSystemTables: TIBSystemTables;
105 >    FExecuteOnly: boolean;
106 >  public
107 >    { public declarations }
108 >    constructor Create(TheOwner: TComponent); override;
109 >    destructor Destroy; override;
110 >    procedure SetDatabase(Database: TIBDatabase);
111 >  end;
112 >
113 > var
114 >  IBSQLEditorForm: TIBSQLEditorForm;
115 >
116 > function EditIBSQL(DataSet: TIBSQL): boolean;
117 >
118 > implementation
119 >
120 > {$R *.lfm}
121 >
122 > uses InterfaceBase;
123 >
124 > function EditIBSQL(DataSet: TIBSQL): boolean;
125 > begin
126 >  Result := false;
127 >  if assigned(DataSet.Database)  then
128 >    try
129 >      DataSet.Database.Connected := true;
130 >    except on E: Exception do
131 >      ShowMessage(E.Message)
132 >    end;
133 >
134 >  with TIBSQLEditorForm.Create(Application) do
135 >  try
136 >    SetDatabase(DataSet.Database);
137 >    SQLText.Lines.Assign(DataSet.SQL);
138 >    GenerateParams.Checked := DataSet.GenerateParamNames;
139 >    Result := ShowModal = mrOK;
140 >    if Result then
141 >      begin
142 >            DataSet.SQL.Assign(SQLText.Lines);
143 >            DataSet.GenerateParamNames := GenerateParams.Checked
144 >      end;
145 >  finally
146 >    Free
147 >  end;
148 >
149 > end;
150 >
151 > { TIBSQLEditorForm }
152 >
153 > procedure TIBSQLEditorForm.FormShow(Sender: TObject);
154 > var IsProcedureName: boolean;
155 > begin
156 >  if WidgetSet.LCLPlatform = lpGtk2 then
157 >    PageControl.TabPosition := tpLeft
158 >  else
159 >  PageControl.TabPosition := tpTop;
160 >  GenerateBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
161 >  TestBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
162 >  if Trim(SQLText.Text) <> '' then
163 >  begin
164 >    case FIBSystemTables.GetStatementType(SQLText.Text,IsProcedureName) of
165 >    SQLSelect:
166 >      if IsProcedureName then
167 >        PageControl.ActivePage := ExecutePage
168 >      else
169 >        PageControl.ActivePage := SelectPage;
170 >    SQLInsert:  PageControl.ActivePage := InsertPage;
171 >    SQLUpdate:  PageControl.ActivePage := ModifyPage;
172 >    SQLDelete:  PageControl.ActivePage := DeletePage;
173 >    SQLExecProcedure: PageControl.ActivePage := ExecutePage;
174 >    else
175 >      PageControl.ActivePage := SelectPage;
176 >    end;
177 >    FIBSystemTables.GetTableAndColumns(SQLText.Text,FTableName,nil)
178 >  end;
179 > end;
180 >
181 > procedure TIBSQLEditorForm.IncludePrimaryKeysClick(Sender: TObject);
182 > begin
183 >  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked);
184 >  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
185 > end;
186 >
187 > procedure TIBSQLEditorForm.DeletePageShow(Sender: TObject);
188 > var TableName: string;
189 > begin
190 >  FIBSystemTables.GetTableNames(DeleteTableNames.Items);
191 >  if Trim(SQLText.Text) = '' then
192 >  begin
193 >    if FTableName <> '' then
194 >      DeleteTableNames.ItemIndex := DeleteTableNames.Items.IndexOf(FTableName)
195 >    else
196 >    if DeleteTableNames.Items.Count > 0 then
197 >      DeleteTableNames.ItemIndex := 0
198 >  end
199 >  else
200 >  begin
201 >    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
202 >    DeleteTableNames.ItemIndex := DeleteTableNames.Items.IndexOf(TableName);
203 >  end;
204 >  FIBSystemTables.GetPrimaryKeys(DeleteTableNames.Text,DeletePrimaryKeys.Items);
205 >
206 > end;
207 >
208 > procedure TIBSQLEditorForm.GenerateBtnClick(Sender: TObject);
209 > var FieldNames: TStrings;
210 > begin
211 >  FieldNames := nil;
212 >  if PageControl.ActivePage = SelectPage then
213 >  begin
214 >    FieldNames := FIBSystemTables.GetFieldNames(SelectFieldsList);
215 >    FIBSystemTables.GenerateSelectSQL(SelectTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
216 >  end
217 >  else
218 >  if PageControl.ActivePage = InsertPage then
219 >  begin
220 >    FieldNames := FIBSystemTables.GetFieldNames(InsertFieldsList);
221 >    FIBSystemTables.GenerateInsertSQL(InsertTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
222 >  end
223 >  else
224 >  if PageControl.ActivePage = ModifyPage then
225 >  begin
226 >    FieldNames := FIBSystemTables.GetFieldNames(ModifyFieldsList);
227 >    FIBSystemTables.GenerateModifySQL(ModifyTableNames.Text,QuoteFields.Checked,FieldNames,SQLText.Lines);
228 >  end
229 >  else
230 >  if PageControl.ActivePage = DeletePage then
231 >     FIBSystemTables.GenerateDeleteSQL(DeleteTableNames.Text,QuoteFields.Checked,SQLText.Lines)
232 >  else
233 >  if PageControl.ActivePage = ExecutePage then
234 >     FIBSystemTables.GenerateExecuteSQL(ProcedureNames.Text,QuoteFields.Checked, FExecuteOnly,
235 >             ProcInputList.Items,ProcOutputList.Items,SQLText.Lines);
236 >
237 >  if FieldNames <> nil then
238 >    FieldNames.Free
239 > end;
240 >
241 > procedure TIBSQLEditorForm.TestBtnClick(Sender: TObject);
242 > begin
243 >  FIBSystemTables.TestSQL(SQLText.Text,GenerateParams.Checked);
244 > end;
245 >
246 > procedure TIBSQLEditorForm.DeleteTableNamesCloseUp(Sender: TObject);
247 > begin
248 >  FTableName := DeleteTableNames.Text;
249 >  FIBSystemTables.GetPrimaryKeys(DeleteTableNames.Text,DeletePrimaryKeys.Items);
250 > end;
251 >
252 > procedure TIBSQLEditorForm.ExecutePageShow(Sender: TObject);
253 > var ProcName: string;
254 >    IsProcedureName: boolean;
255 > begin
256 >  FIBSystemTables.GetProcedureNames(ProcedureNames.Items);
257 >  if ProcedureNames.Items.Count > 0 then
258 >  begin
259 >    if (FIBSystemTables.GetStatementType(SQLText.Text,IsProcedureName) = SQLExecProcedure) or IsProcedureName then
260 >    begin
261 >      FIBSystemTables.GetTableAndColumns(SQLText.Text,ProcName,nil);
262 >      ProcedureNames.ItemIndex := ProcedureNames.Items.IndexOf(ProcName)
263 >    end
264 >    else
265 >      ProcedureNames.ItemIndex := 0;
266 >  end;
267 >  FIBSystemTables.GetProcParams(ProcedureNames.Text,FExecuteOnly,ProcInputList.Items,ProcOutputList.Items);
268 >  SelectProcedure.Visible :=  not FExecuteOnly;
269 > end;
270 >
271 > procedure TIBSQLEditorForm.InsertPageShow(Sender: TObject);
272 > var TableName: string;
273 > begin
274 >  FIBSystemTables.GetTableNames(InsertTableNames.Items);
275 >  if Trim(SQLText.Text) = '' then
276 >  begin
277 >    if FTableName <> '' then
278 >      InsertTableNames.ItemIndex := InsertTableNames.Items.IndexOf(FTableName)
279 >    else
280 >    if InsertTableNames.Items.Count > 0 then
281 >      InsertTableNames.ItemIndex := 0
282 >  end
283 >  else
284 >  begin
285 >    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
286 >    InsertTableNames.ItemIndex := InsertTableNames.Items.IndexOf(TableName);
287 >  end;
288 >  FIBSystemTables.GetFieldNames(InsertTableNames.Text,InsertFieldsList.Items);
289 >
290 > end;
291 >
292 > procedure TIBSQLEditorForm.Label13Click(Sender: TObject);
293 > begin
294 >  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked);
295 >  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
296 > end;
297 >
298 > procedure TIBSQLEditorForm.ModifyPageShow(Sender: TObject);
299 > var TableName: string;
300 > begin
301 >   FIBSystemTables.GetTableNames(ModifyTableNames.Items);
302 >  if Trim(SQLText.Text) = '' then
303 >  begin
304 >    if FTableName <> '' then
305 >      ModifyTableNames.ItemIndex := ModifyTableNames.Items.IndexOf(FTableName)
306 >    else
307 >    if ModifyTableNames.Items.Count > 0 then
308 >      ModifyTableNames.ItemIndex := 0;
309 >  end
310 >  else
311 >  begin
312 >    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
313 >    ModifyTableNames.ItemIndex := ModifyTableNames.Items.IndexOf(TableName);
314 >  end;
315 >  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked,false);
316 >  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
317 > end;
318 >
319 > procedure TIBSQLEditorForm.ModifyTableNamesCloseUp(Sender: TObject);
320 > begin
321 >  FTableName := ModifyTableNames.Text;
322 >  FIBSystemTables.GetFieldNames(ModifyTableNames.Text,ModifyFieldsList.Items,IncludePrimaryKeys.checked,false);
323 >  FIBSystemTables.GetPrimaryKeys(ModifyTableNames.Text,ModifyPrimaryKeys.Items);
324 > end;
325 >
326 > procedure TIBSQLEditorForm.ProcedureNamesCloseUp(Sender: TObject);
327 > begin
328 >    FIBSystemTables.GetProcParams(ProcedureNames.Text,FExecuteOnly,ProcInputList.Items,ProcOutputList.Items);
329 >    SelectProcedure.Visible := not FExecuteOnly
330 > end;
331 >
332 > procedure TIBSQLEditorForm.SelectFieldsListDblClick(Sender: TObject);
333 > begin
334 >  SQLText.SelText:= (Sender as TListBox).Items[(Sender as TListBox).ItemIndex];
335 > end;
336 >
337 > procedure TIBSQLEditorForm.SelectPageShow(Sender: TObject);
338 > var TableName: string;
339 > begin
340 >  FIBSystemTables.GetTableNames(SelectTableNames.Items);
341 >  if Trim(SQLText.Text) = '' then
342 >  begin
343 >    if FTableName <> '' then
344 >      SelectTableNames.ItemIndex := SelectTableNames.Items.IndexOf(FTableName)
345 >    else
346 >    if SelectTableNames.Items.Count > 0 then
347 >      SelectTableNames.ItemIndex := 0;
348 >  end
349 >  else
350 >  begin
351 >    FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
352 >    SelectTableNames.ItemIndex := SelectTableNames.Items.IndexOf(TableName);
353 >  end;
354 >  FIBSystemTables.GetFieldNames(SelectTableNames.Text,SelectFieldsList.Items);
355 >  FIBSystemTables.GetPrimaryKeys(SelectTableNames.Text,SelectPrimaryKeys.Items);
356 > end;
357 >
358 > procedure TIBSQLEditorForm.SelectTableNamesCloseUp(Sender: TObject);
359 > begin
360 >  FTableName := SelectTableNames.Text;
361 >  try
362 >  FIBSystemTables.GetFieldNames(SelectTableNames.Text,SelectFieldsList.Items);
363 >  FIBSystemTables.GetPrimaryKeys(SelectTableNames.Text,SelectPrimaryKeys.Items);
364 >  except {ignore}  end;
365 > end;
366 >
367 > procedure TIBSQLEditorForm.InsertTableNamesCloseUp(Sender: TObject);
368 > begin
369 >  FTableName := InsertTableNames.Text;
370 >  FIBSystemTables.GetFieldNames(InsertTableNames.Text,InsertFieldsList.Items);
371 > end;
372 >
373 > constructor TIBSQLEditorForm.Create(TheOwner: TComponent);
374 > begin
375 >  inherited Create(TheOwner);
376 >  FIBSystemTables := TIBSystemTables.Create;
377 > end;
378 >
379 > destructor TIBSQLEditorForm.Destroy;
380 > begin
381 >  if assigned(FIBSystemTables) then FIBSystemTables.Free;
382 >  inherited Destroy;
383 > end;
384 >
385 > procedure TIBSQLEditorForm.SetDatabase(Database: TIBDatabase);
386 > begin
387 >  IBTransaction1.DefaultDatabase := Database;
388 >  FIBSystemTables.SelectDatabase(Database,IBTransaction1)
389 > end;
390 >
391 > end.
392 >

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines