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

Comparing ibx/trunk/design/ibinsertsqleditor.pas (file contents):
Revision 7 by tony, Sun Aug 5 18:28:19 2012 UTC vs.
Revision 101 by tony, Thu Jan 18 14:37:18 2018 UTC

# Line 23 | Line 23
23   *  Contributor(s): ______________________________________.
24   *
25   *)
26
26   unit ibinsertsqleditor;
27  
28   {$mode objfpc}{$H+}
# Line 31 | Line 30 | unit ibinsertsqleditor;
30   interface
31  
32   uses
33 <  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
34 <  StdCtrls, IBSystemTables, IBDatabase;
33 >  Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
34 >    ibselectsqleditor, IBSQLEditFrame, IBDatabase, IBCustomDataset;
35  
36   type
37  
38    { TIBInsertSQLEditorForm }
39  
40 <  TIBInsertSQLEditorForm = class(TForm)
42 <    Button1: TButton;
43 <    Button2: TButton;
44 <    GenerateBtn: TButton;
45 <    TestBtn: TButton;
46 <    FieldList: TListBox;
47 <    IBTransaction1: TIBTransaction;
48 <    Label1: TLabel;
49 <    Label2: TLabel;
50 <    Label3: TLabel;
51 <    QuoteFields: TCheckBox;
52 <    SQLText: TMemo;
53 <    TableNamesCombo: TComboBox;
40 >  TIBInsertSQLEditorForm = class(TIBSelectSQLEditorForm)
41      procedure GenerateBtnClick(Sender: TObject);
55    procedure TestBtnClick(Sender: TObject);
56    procedure FieldListDblClick(Sender: TObject);
57    procedure FormShow(Sender: TObject);
58    procedure TableNamesComboCloseUp(Sender: TObject);
42    private
43 <    { private declarations }
44 <    FIBSystemTables: TIBSystemTables;
43 >
44 >  protected
45 >    procedure Loaded; override;
46 >
47    public
48 <    { public declarations }
49 <    constructor Create(TheOwner: TComponent); override;
50 <    destructor Destroy; override;
51 <    procedure SetDatabase(Database: TIBDatabase);
67 <  end;
48 >
49 >  end;
50 >
51 > function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean;
52  
53   var
54    IBInsertSQLEditorForm: TIBInsertSQLEditorForm;
55  
72 function EditSQL(Database: TIBDatabase; SelectSQL: TStrings): boolean;
73
56   implementation
57  
58   {$R *.lfm}
59  
60 < function EditSQL(Database: TIBDatabase; SelectSQL: TStrings): boolean;
60 > function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean;
61   begin
62 < Result := false;
63 <
82 < if assigned(Database) then
62 >  Result := false;
63 >  if assigned(DataSet) and assigned(DataSet.Database) then
64      try
65 <      Database.Connected := true;
65 >      DataSet.Database.Connected := true;
66      except on E: Exception do
67        ShowMessage(E.Message)
68      end;
69  
70    with TIBInsertSQLEditorForm.Create(Application) do
71    try
72 <    SetDatabase(Database);
73 <    SQLText.Lines.Assign(SelectSQL);
72 >    if assigned(DataSet) then
73 >    begin
74 >        IBSQLEditFrame1.Database := DataSet.Database;
75 >        GenerateParams.Checked := DataSet.GenerateParamNames;
76 >    end;
77 >    with IBSQLEditFrame1 do
78 >    begin
79 >      IncludePrimaryKeys := true;
80 >      IncludeReadOnlyFields := false;
81 >      ExecuteOnlyProcs := true;
82 >      ExcludeIdentityColumns := true;
83 >      SQLText.Lines.Assign(SelectSQL);
84 >    end;
85      Result := ShowModal = mrOK;
86      if Result then
87 <     SelectSQL.Assign(SQLText.Lines)
87 >    begin
88 >     SelectSQL.Assign(IBSQLEditFrame1.SQLText.Lines);
89 >     if assigned(DataSet) then
90 >          DataSet.GenerateParamNames := GenerateParams.Checked
91 >    end;
92    finally
93      Free
94    end;
# Line 100 | Line 96 | end;
96  
97   { TIBInsertSQLEditorForm }
98  
103 procedure TIBInsertSQLEditorForm.FormShow(Sender: TObject);
104 var TableName: string;
105 begin
106  GenerateBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
107  TestBtn.Enabled := (IBTransaction1.DefaultDatabase <> nil) and IBTransaction1.DefaultDatabase.Connected;
108  TableNamesCombo.Items.Clear;
109  try
110  FIBSystemTables.GetTableNames(TableNamesCombo.Items);
111  if TableNamesCombo.Items.Count > 0 then
112  begin
113    TableNamesCombo.ItemIndex := 0;
114    if Trim(SQLText.Text) <> '' then
115    begin
116      FIBSystemTables.GetTableAndColumns(SQLText.Text,TableName,nil);
117      TableNamesCombo.ItemIndex := TableNamesCombo.Items.IndexOf(TableName)
118    end;
119    FIBSystemTables.GetFieldNames(TableNamesCombo.Text,FieldList.Items,true,false);
120  end;
121  except {ignore}
122  end;
123 end;
124
125 procedure TIBInsertSQLEditorForm.FieldListDblClick(Sender: TObject);
126 begin
127  SQLText.SelText := FieldList.Items[FieldList.ItemIndex];
128  SQLText.SetFocus
129 end;
130
99   procedure TIBInsertSQLEditorForm.GenerateBtnClick(Sender: TObject);
132 var FieldNames: TStrings;
133 begin
134  FieldNames :=  FIBSystemTables.GetFieldNames(FieldList);
135  try
136    FIBSystemTables.GenerateInsertSQL(TableNamesCombo.Text,QuoteFields.Checked,
137               FieldNames,SQLText.Lines)
138  finally
139    FieldNames.Free
140  end;
141 end;
142
143 procedure TIBInsertSQLEditorForm.TestBtnClick(Sender: TObject);
100   begin
101 <  FIBSystemTables.TestSQL(SQLText.Lines.Text)
101 >  if PageControl.ActivePage = ExecutePage then
102 >    IBSQLEditFrame1.GenerateExecuteSQL(QuoteFields.Checked)
103 >  else
104 >    IBSQLEditFrame1.GenerateInsertSQL(QuoteFields.Checked);
105   end;
106  
107 < procedure TIBInsertSQLEditorForm.TableNamesComboCloseUp(Sender: TObject);
107 > procedure TIBInsertSQLEditorForm.Loaded;
108   begin
109 <  FIBSystemTables.GetFieldNames(TableNamesCombo.Text,FieldList.Items,true,false);
110 < end;
111 <
112 < constructor TIBInsertSQLEditorForm.Create(TheOwner: TComponent);
113 < begin
114 <  inherited Create(TheOwner);
156 <  FIBSystemTables := TIBSystemTables.Create;
157 < end;
158 <
159 < destructor TIBInsertSQLEditorForm.Destroy;
160 < begin
161 <  if assigned(FIBSystemTables) then FIBSystemTables.Free;
162 <  inherited Destroy;
109 >  inherited Loaded;
110 >  if IBSQLEditFrame1 <> nil then
111 >  begin
112 >    if PrimaryKeysGrid <> nil then
113 >      PrimaryKeysGrid.DataSource := IBSQLEditFrame1.IdentityColsSource;
114 >  end;
115   end;
116  
165 procedure TIBInsertSQLEditorForm.SetDatabase(Database: TIBDatabase);
166 begin
167  IBTransaction1.DefaultDatabase := Database;
168  FIBSystemTables.SelectDatabase(Database,IBTransaction1)
169 end;
117  
118   end.
119  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines