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 |
+ |
|
27 |
|
unit ibselectsqleditor; |
28 |
|
|
29 |
|
{$mode objfpc}{$H+} |
31 |
|
interface |
32 |
|
|
33 |
|
uses |
34 |
< |
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, |
35 |
< |
StdCtrls, IBSystemTables, IBDatabase; |
34 |
> |
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, |
35 |
> |
ComCtrls, db, IBSQLEditFrame, IBDatabase, IBCustomDataSet, |
36 |
> |
IBLookupComboEditBox, IBDynamicGrid, IB; |
37 |
|
|
38 |
|
type |
39 |
|
|
42 |
|
TIBSelectSQLEditorForm = class(TForm) |
43 |
|
Button1: TButton; |
44 |
|
Button2: TButton; |
45 |
< |
Button3: TButton; |
46 |
< |
Button4: TButton; |
47 |
< |
FieldList: TListBox; |
45 |
> |
InputProcGrid: TIBDynamicGrid; |
46 |
> |
OutputProcGrid: TIBDynamicGrid; |
47 |
> |
IncludeSysTables: TCheckBox; |
48 |
> |
GenerateBtn: TButton; |
49 |
> |
GenerateParams: TCheckBox; |
50 |
> |
FieldNamesGrid: TIBDynamicGrid; |
51 |
> |
PrimaryKeysGrid: TIBDynamicGrid; |
52 |
> |
IBSQLEditFrame1: TIBSQLEditFrame; |
53 |
> |
ProcedureNames: TIBLookupComboEditBox; |
54 |
> |
SelectProcedure: TLabel; |
55 |
> |
SelectSelectAll: TCheckBox; |
56 |
> |
SelectTableNames: TIBLookupComboEditBox; |
57 |
> |
TestBtn: TButton; |
58 |
|
Label1: TLabel; |
59 |
+ |
Label16: TLabel; |
60 |
+ |
Label17: TLabel; |
61 |
+ |
Label18: TLabel; |
62 |
|
Label2: TLabel; |
63 |
|
Label3: TLabel; |
64 |
|
Label4: TLabel; |
65 |
< |
PrimaryKeyList: TListBox; |
65 |
> |
PageControl: TPageControl; |
66 |
|
QuoteFields: TCheckBox; |
67 |
< |
SQLText: TMemo; |
68 |
< |
TableNamesCombo: TComboBox; |
69 |
< |
procedure Button3Click(Sender: TObject); |
70 |
< |
procedure Button4Click(Sender: TObject); |
67 |
> |
SelectPage: TTabSheet; |
68 |
> |
ExecutePage: TTabSheet; |
69 |
> |
procedure FieldNamesGridDblClick(Sender: TObject); |
70 |
> |
procedure GenerateBtnClick(Sender: TObject); |
71 |
> |
procedure IncludeSysTablesChange(Sender: TObject); |
72 |
> |
procedure InputProcGridDblClick(Sender: TObject); |
73 |
> |
procedure OutputProcGridDblClick(Sender: TObject); |
74 |
> |
procedure PrimaryKeysGridDblClick(Sender: TObject); |
75 |
> |
procedure ProcedureNamesDblClick(Sender: TObject); |
76 |
> |
procedure SelectSelectAllChange(Sender: TObject); |
77 |
> |
procedure SelectTableNamesDblClick(Sender: TObject); |
78 |
> |
procedure TestBtnClick(Sender: TObject); |
79 |
> |
procedure ExecutePageShow(Sender: TObject); |
80 |
|
procedure FieldListDblClick(Sender: TObject); |
81 |
|
procedure FormShow(Sender: TObject); |
82 |
|
procedure PrimaryKeyListDblClick(Sender: TObject); |
83 |
< |
procedure TableNamesComboCloseUp(Sender: TObject); |
83 |
> |
procedure SelectPageShow(Sender: TObject); |
84 |
> |
procedure UserProceduresAfterScroll(DataSet: TDataSet); |
85 |
|
private |
86 |
|
{ private declarations } |
87 |
< |
FIBSystemTables: TIBSystemTables; |
87 |
> |
procedure HandleUserTablesOpened(Sender: TObject); |
88 |
> |
protected |
89 |
> |
procedure Loaded; override; |
90 |
> |
procedure SetSQLStatementType(aType: TIBSQLStatementTypes); virtual; |
91 |
|
public |
92 |
|
{ public declarations } |
93 |
< |
constructor Create(TheOwner: TComponent); override; |
41 |
< |
destructor Destroy; override; |
42 |
< |
procedure SetDatabase(Database: TIBDatabase; Transaction: TIBTransaction); |
43 |
< |
end; |
93 |
> |
end; |
94 |
|
|
45 |
– |
var |
46 |
– |
IBSelectSQLEditorForm: TIBSelectSQLEditorForm; |
95 |
|
|
96 |
< |
function EditSQL(Database: TIBDatabase; Transaction: TIBTransaction; SelectSQL: TStrings): boolean; |
96 |
> |
function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean; |
97 |
|
|
98 |
|
implementation |
99 |
|
|
100 |
< |
function EditSQL(Database: TIBDatabase; Transaction: TIBTransaction; SelectSQL: TStrings): boolean; |
100 |
> |
{$R *.lfm} |
101 |
> |
|
102 |
> |
function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean; |
103 |
|
begin |
104 |
|
Result := false; |
105 |
< |
if assigned(Database) then |
106 |
< |
begin |
107 |
< |
if not assigned(Transaction) then |
108 |
< |
begin |
109 |
< |
if not assigned(Database.DefaultTransaction)then |
60 |
< |
begin |
61 |
< |
ShowMessage('No Default Transaction!'); |
62 |
< |
Exit |
63 |
< |
end; |
64 |
< |
Transaction := Database.DefaultTransaction |
105 |
> |
if assigned(DataSet) and assigned(DataSet.Database) then |
106 |
> |
try |
107 |
> |
DataSet.Database.Connected := true; |
108 |
> |
except on E: Exception do |
109 |
> |
ShowMessage(E.Message) |
110 |
|
end; |
111 |
|
|
67 |
– |
Database.Connected := true; |
68 |
– |
end; |
69 |
– |
|
112 |
|
with TIBSelectSQLEditorForm.Create(Application) do |
113 |
|
try |
114 |
< |
SetDatabase(Database,Transaction); |
115 |
< |
SQLText.Lines.Assign(SelectSQL); |
114 |
> |
if assigned(DataSet) then |
115 |
> |
begin |
116 |
> |
IBSQLEditFrame1.Database := DataSet.Database; |
117 |
> |
GenerateParams.Checked := DataSet.GenerateParamNames; |
118 |
> |
end; |
119 |
> |
IBSQLEditFrame1.SQLText.Lines.Assign(SelectSQL); |
120 |
|
Result := ShowModal = mrOK; |
121 |
|
if Result then |
122 |
< |
SelectSQL.Assign(SQLText.Lines) |
122 |
> |
begin |
123 |
> |
SelectSQL.Assign(IBSQLEditFrame1.SQLText.Lines); |
124 |
> |
if assigned(DataSet) then |
125 |
> |
DataSet.GenerateParamNames := GenerateParams.Checked |
126 |
> |
end; |
127 |
|
finally |
128 |
|
Free |
129 |
|
end; |
133 |
|
|
134 |
|
procedure TIBSelectSQLEditorForm.FormShow(Sender: TObject); |
135 |
|
begin |
136 |
< |
TableNamesCombo.Items.Clear; |
137 |
< |
FIBSystemTables.GetTableNames(TableNamesCombo.Items); |
138 |
< |
if TableNamesCombo.Items.Count > 0 then |
136 |
> |
GenerateBtn.Enabled := (IBSQLEditFrame1.Database <> nil) and IBSQLEditFrame1.Database.Connected; |
137 |
> |
TestBtn.Enabled := (IBSQLEditFrame1.Database <> nil) and IBSQLEditFrame1.Database.Connected; |
138 |
> |
PageControl.ActivePage := SelectPage; |
139 |
> |
if Trim(IBSQLEditFrame1.SQLText.Text) <> '' then |
140 |
|
begin |
141 |
< |
TableNamesCombo.ItemIndex := 0; |
142 |
< |
FIBSystemTables.GetFieldNames(TableNamesCombo.Text,FieldList.Items); |
143 |
< |
FIBSystemTables.GetPrimaryKeys(TableNamesCombo.Text,PrimaryKeyList.Items); |
141 |
> |
try |
142 |
> |
SetSQLStatementType(IBSQLEditFrame1.SyncQueryBuilder); |
143 |
> |
except end; |
144 |
|
end; |
145 |
|
end; |
146 |
|
|
147 |
|
procedure TIBSelectSQLEditorForm.PrimaryKeyListDblClick(Sender: TObject); |
148 |
|
begin |
149 |
< |
SQLText.SelText := PrimaryKeyList.Items[PrimaryKeyList.ItemIndex]; |
150 |
< |
SQLText.SetFocus |
149 |
> |
IBSQLEditFrame1.InsertSelectedPrimaryKey; |
150 |
> |
end; |
151 |
> |
|
152 |
> |
procedure TIBSelectSQLEditorForm.SelectPageShow(Sender: TObject); |
153 |
> |
begin |
154 |
> |
IBSQLEditFrame1.UserTables.Active := true; |
155 |
> |
end; |
156 |
> |
|
157 |
> |
procedure TIBSelectSQLEditorForm.UserProceduresAfterScroll(DataSet: TDataSet); |
158 |
> |
begin |
159 |
> |
SelectProcedure.Visible := DataSet.FieldByName('RDB$PROCEDURE_TYPE').AsInteger = 2; |
160 |
|
end; |
161 |
|
|
162 |
|
procedure TIBSelectSQLEditorForm.FieldListDblClick(Sender: TObject); |
163 |
|
begin |
164 |
< |
SQLText.SelText := FieldList.Items[FieldList.ItemIndex]; |
105 |
< |
SQLText.SetFocus |
164 |
> |
IBSQLEditFrame1.InsertSelectedFieldName; |
165 |
|
end; |
166 |
|
|
167 |
< |
procedure TIBSelectSQLEditorForm.Button3Click(Sender: TObject); |
167 |
> |
procedure TIBSelectSQLEditorForm.GenerateBtnClick(Sender: TObject); |
168 |
|
begin |
169 |
< |
FIBSystemTables.GenerateSelectSQL(TableNamesCombo.Text,QuoteFields.Checked,SQLText.Lines) |
169 |
> |
if PageControl.ActivePage = ExecutePage then |
170 |
> |
IBSQLEditFrame1.GenerateExecuteSQL(QuoteFields.Checked) |
171 |
> |
else |
172 |
> |
IBSQLEditFrame1.GenerateSelectSQL(QuoteFields.Checked); |
173 |
|
end; |
174 |
|
|
175 |
< |
procedure TIBSelectSQLEditorForm.Button4Click(Sender: TObject); |
175 |
> |
procedure TIBSelectSQLEditorForm.FieldNamesGridDblClick(Sender: TObject); |
176 |
|
begin |
177 |
< |
FIBSystemTables.TestSQL(SQLText.Lines.Text) |
177 |
> |
IBSQLEditFrame1.InsertSelectedFieldName; |
178 |
|
end; |
179 |
|
|
180 |
< |
procedure TIBSelectSQLEditorForm.TableNamesComboCloseUp(Sender: TObject); |
180 |
> |
procedure TIBSelectSQLEditorForm.IncludeSysTablesChange(Sender: TObject); |
181 |
|
begin |
182 |
< |
FIBSystemTables.GetFieldNames(TableNamesCombo.Text,FieldList.Items); |
121 |
< |
FIBSystemTables.GetPrimaryKeys(TableNamesCombo.Text,PrimaryKeyList.Items); |
182 |
> |
IBSQLEditFrame1.IncludeSystemTables := IncludeSysTables.Checked; |
183 |
|
end; |
184 |
|
|
185 |
< |
constructor TIBSelectSQLEditorForm.Create(TheOwner: TComponent); |
185 |
> |
procedure TIBSelectSQLEditorForm.InputProcGridDblClick(Sender: TObject); |
186 |
|
begin |
187 |
< |
inherited Create(TheOwner); |
127 |
< |
FIBSystemTables := TIBSystemTables.Create; |
187 |
> |
IBSQLEditFrame1.InsertSelectedInputParam; |
188 |
|
end; |
189 |
|
|
190 |
< |
destructor TIBSelectSQLEditorForm.Destroy; |
190 |
> |
procedure TIBSelectSQLEditorForm.OutputProcGridDblClick(Sender: TObject); |
191 |
|
begin |
192 |
< |
if assigned(FIBSystemTables) then FIBSystemTables.Free; |
133 |
< |
inherited Destroy; |
192 |
> |
IBSQLEditFrame1.InsertSelectedOutputParam; |
193 |
|
end; |
194 |
|
|
195 |
< |
procedure TIBSelectSQLEditorForm.SetDatabase(Database: TIBDatabase; Transaction: TIBTransaction); |
195 |
> |
procedure TIBSelectSQLEditorForm.PrimaryKeysGridDblClick(Sender: TObject); |
196 |
|
begin |
197 |
< |
FIBSystemTables.SelectDatabase(Database,Transaction) |
197 |
> |
IBSQLEditFrame1.InsertSelectedPrimaryKey; |
198 |
|
end; |
199 |
|
|
200 |
< |
initialization |
201 |
< |
{$I ibselectsqleditor.lrs} |
200 |
> |
procedure TIBSelectSQLEditorForm.ProcedureNamesDblClick(Sender: TObject); |
201 |
> |
begin |
202 |
> |
IBSQLEditFrame1.InsertProcName; |
203 |
> |
end; |
204 |
|
|
205 |
< |
end. |
205 |
> |
procedure TIBSelectSQLEditorForm.SelectSelectAllChange(Sender: TObject); |
206 |
> |
begin |
207 |
> |
IBSQLEditFrame1.SelectAllFields(SelectSelectAll.Checked); |
208 |
> |
end; |
209 |
|
|
210 |
+ |
procedure TIBSelectSQLEditorForm.SelectTableNamesDblClick(Sender: TObject); |
211 |
+ |
begin |
212 |
+ |
IBSQLEditFrame1.InsertTableName; |
213 |
+ |
end; |
214 |
+ |
|
215 |
+ |
procedure TIBSelectSQLEditorForm.TestBtnClick(Sender: TObject); |
216 |
+ |
begin |
217 |
+ |
IBSQLEditFrame1.TestSQL(GenerateParams.Checked) |
218 |
+ |
end; |
219 |
+ |
|
220 |
+ |
procedure TIBSelectSQLEditorForm.ExecutePageShow(Sender: TObject); |
221 |
+ |
begin |
222 |
+ |
IBSQLEditFrame1.UserProcedures.Active := true; |
223 |
+ |
end; |
224 |
+ |
|
225 |
+ |
procedure TIBSelectSQLEditorForm.HandleUserTablesOpened(Sender: TObject); |
226 |
+ |
begin |
227 |
+ |
SelectSelectAll.Checked := true; |
228 |
+ |
SelectProcedure.Visible := false; |
229 |
+ |
end; |
230 |
+ |
|
231 |
+ |
procedure TIBSelectSQLEditorForm.Loaded; |
232 |
+ |
begin |
233 |
+ |
inherited Loaded; |
234 |
+ |
if IBSQLEditFrame1 <> nil then |
235 |
+ |
begin |
236 |
+ |
IBSQLEditFrame1.OnUserTablesOpened := @HandleUserTablesOpened; |
237 |
+ |
if SelectTableNames <> nil then |
238 |
+ |
SelectTableNames.ListSource := IBSQLEditFrame1.UserTableSource; |
239 |
+ |
if FieldNamesGrid <> nil then |
240 |
+ |
FieldNamesGrid.DataSource := IBSQLEditFrame1.FieldsSource; |
241 |
+ |
if PrimaryKeysGrid <> nil then |
242 |
+ |
PrimaryKeysGrid.DataSource := IBSQLEditFrame1.PrimaryKeySource; |
243 |
+ |
if ProcedureNames <> nil then |
244 |
+ |
ProcedureNames.ListSource := IBSQLEditFrame1.UserProcSource; |
245 |
+ |
if InputProcGrid <> nil then |
246 |
+ |
InputProcGrid.DataSource := IBSQLEditFrame1.ProcInputSource; |
247 |
+ |
if OutputProcGrid <> nil then |
248 |
+ |
OutputProcGrid.DataSource := IBSQLEditFrame1.ProcOutputSource; |
249 |
+ |
end; |
250 |
+ |
end; |
251 |
+ |
|
252 |
+ |
procedure TIBSelectSQLEditorForm.SetSQLStatementType(aType: TIBSQLStatementTypes |
253 |
+ |
); |
254 |
+ |
begin |
255 |
+ |
case aType of |
256 |
+ |
SQLExecProcedure: |
257 |
+ |
PageControl.ActivePage := ExecutePage; |
258 |
+ |
else |
259 |
+ |
PageControl.ActivePage := SelectPage; |
260 |
+ |
end; |
261 |
+ |
end; |
262 |
+ |
|
263 |
+ |
end. |