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 106 by tony, Thu Jan 18 14:37:35 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 >  StdCtrls, ComCtrls, ibselectsqleditor, IBSQLEditFrame, IBDatabase,
35 >  IBLookupComboEditBox, IBDynamicGrid, IBCustomDataset;
36  
37   type
38  
39    { TIBInsertSQLEditorForm }
40  
41 <  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;
41 >  TIBInsertSQLEditorForm = class(TIBSelectSQLEditorForm)
42 >    IdentityGrid: TIBDynamicGrid;
43 >    Label5: TLabel;
44 >    Label6: TLabel;
45 >    ReadOnlyGrid: TIBDynamicGrid;
46      procedure GenerateBtnClick(Sender: TObject);
55    procedure TestBtnClick(Sender: TObject);
56    procedure FieldListDblClick(Sender: TObject);
57    procedure FormShow(Sender: TObject);
58    procedure TableNamesComboCloseUp(Sender: TObject);
47    private
48 <    { private declarations }
49 <    FIBSystemTables: TIBSystemTables;
48 >
49 >  protected
50 >    procedure Loaded; override;
51 >
52    public
53 <    { public declarations }
54 <    constructor Create(TheOwner: TComponent); override;
55 <    destructor Destroy; override;
56 <    procedure SetDatabase(Database: TIBDatabase);
67 <  end;
53 >
54 >  end;
55 >
56 > function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean;
57  
58   var
59    IBInsertSQLEditorForm: TIBInsertSQLEditorForm;
60  
72 function EditSQL(Database: TIBDatabase; SelectSQL: TStrings): boolean;
73
61   implementation
62  
63   {$R *.lfm}
64  
65 < function EditSQL(Database: TIBDatabase; SelectSQL: TStrings): boolean;
65 > function EditSQL(DataSet: TIBCustomDataSet; SelectSQL: TStrings): boolean;
66   begin
67 < Result := false;
68 <
82 < if assigned(Database) then
67 >  Result := false;
68 >  if assigned(DataSet) and assigned(DataSet.Database) then
69      try
70 <      Database.Connected := true;
70 >      DataSet.Database.Connected := true;
71      except on E: Exception do
72        ShowMessage(E.Message)
73      end;
74  
75    with TIBInsertSQLEditorForm.Create(Application) do
76    try
77 <    SetDatabase(Database);
78 <    SQLText.Lines.Assign(SelectSQL);
77 >    if assigned(DataSet) then
78 >    begin
79 >        IBSQLEditFrame1.Database := DataSet.Database;
80 >        GenerateParams.Checked := DataSet.GenerateParamNames;
81 >    end;
82 >    with IBSQLEditFrame1 do
83 >    begin
84 >      IncludeReadOnlyFields := false;
85 >      ExecuteOnlyProcs := true;
86 >      ExcludeIdentityColumns := true;
87 >      SQLText.Lines.Assign(SelectSQL);
88 >    end;
89      Result := ShowModal = mrOK;
90      if Result then
91 <     SelectSQL.Assign(SQLText.Lines)
91 >    begin
92 >     SelectSQL.Assign(IBSQLEditFrame1.SQLText.Lines);
93 >     if assigned(DataSet) then
94 >          DataSet.GenerateParamNames := GenerateParams.Checked
95 >    end;
96    finally
97      Free
98    end;
# Line 100 | Line 100 | end;
100  
101   { TIBInsertSQLEditorForm }
102  
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
103   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);
104   begin
105 <  FIBSystemTables.TestSQL(SQLText.Lines.Text)
105 >  if PageControl.ActivePage = ExecutePage then
106 >    IBSQLEditFrame1.GenerateExecuteSQL(QuoteFields.Checked)
107 >  else
108 >    IBSQLEditFrame1.GenerateInsertSQL(QuoteFields.Checked);
109   end;
110  
111 < procedure TIBInsertSQLEditorForm.TableNamesComboCloseUp(Sender: TObject);
111 > procedure TIBInsertSQLEditorForm.Loaded;
112   begin
113 <  FIBSystemTables.GetFieldNames(TableNamesCombo.Text,FieldList.Items,true,false);
114 < end;
115 <
116 < constructor TIBInsertSQLEditorForm.Create(TheOwner: TComponent);
117 < begin
118 <  inherited Create(TheOwner);
119 <  FIBSystemTables := TIBSystemTables.Create;
120 < end;
121 <
122 < destructor TIBInsertSQLEditorForm.Destroy;
160 < begin
161 <  if assigned(FIBSystemTables) then FIBSystemTables.Free;
162 <  inherited Destroy;
113 >  inherited Loaded;
114 >  if IBSQLEditFrame1 <> nil then
115 >  begin
116 >   if PrimaryKeysGrid <> nil then
117 >     PrimaryKeysGrid.DataSource := IBSQLEditFrame1.PrimaryKeySource;
118 >   if IdentityGrid <> nil then
119 >     IdentityGrid.DataSource := IBSQLEditFrame1.IdentityColsSource;
120 >    if ReadOnlyGrid <> nil then
121 >      ReadOnlyGrid.DataSource := IBSQLEditFrame1.ReadOnlyFieldsSource;
122 >  end;
123   end;
124  
165 procedure TIBInsertSQLEditorForm.SetDatabase(Database: TIBDatabase);
166 begin
167  IBTransaction1.DefaultDatabase := Database;
168  FIBSystemTables.SelectDatabase(Database,IBTransaction1)
169 end;
125  
126   end.
127  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines