forked from motaz/turbobird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlhistory.lfm
140 lines (140 loc) · 3 KB
/
sqlhistory.lfm
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
object fmSQLHistory: TfmSQLHistory
Left = 463
Height = 492
Top = 293
Width = 873
Caption = 'SQL History'
ClientHeight = 492
ClientWidth = 873
OnClose = FormClose
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '1.2.0.3'
object DBGrid1: TDBGrid
Left = 0
Height = 404
Top = 8
Width = 852
Anchors = [akTop, akLeft, akRight, akBottom]
BorderStyle = bsNone
Color = clWindow
Columns = <>
DataSource = Datasource1
Options = [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgMultiselect]
ReadOnly = True
TabOrder = 0
OnDblClick = DBGrid1DblClick
end
object bbInsert: TBitBtn
Left = 8
Height = 30
Top = 427
Width = 152
Anchors = [akLeft, akBottom]
Caption = 'Insert in SQL Query'
OnClick = bbInsertClick
TabOrder = 1
end
object bbDelete: TBitBtn
Left = 184
Height = 30
Top = 427
Width = 81
Anchors = [akLeft, akBottom]
Cancel = True
Caption = 'Delete'
Kind = bkCancel
OnClick = bbDeleteClick
TabOrder = 2
end
object GroupBox1: TGroupBox
Left = 275
Height = 56
Top = 422
Width = 585
Anchors = [akLeft, akRight, akBottom]
Caption = 'Export to text file'
ClientHeight = 38
ClientWidth = 581
TabOrder = 3
object cxAfterDate: TCheckBox
Left = 6
Height = 17
Top = 7
Width = 113
Caption = 'Only after the date'
OnClick = cxAfterDateClick
TabOrder = 0
end
object DateEdit1: TDateEdit
Left = 163
Height = 21
Top = 2
Width = 104
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
OKCaption = 'OK'
CancelCaption = 'Cancel'
DateOrder = doNone
ButtonWidth = 23
CharCase = ecNormal
NumGlyphs = 1
MaxLength = 0
TabOrder = 1
Visible = False
end
object Label1: TLabel
Left = 307
Height = 13
Top = 5
Width = 46
Caption = 'SQL Type'
ParentColor = False
end
object cbSQLType: TComboBox
Left = 379
Height = 21
Top = -2
Width = 100
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'All'
'DDL,DML'
'DDL'
'DML'
'Select'
)
Style = csDropDownList
TabOrder = 2
Text = 'All'
end
object bbExport: TBitBtn
Left = 499
Height = 30
Top = 0
Width = 75
Caption = 'Export'
OnClick = bbExportClick
TabOrder = 3
end
end
object cxOverwrite: TCheckBox
Left = 8
Height = 17
Top = 462
Width = 130
Caption = 'Overwrite existing SQL'
TabOrder = 4
end
object Datasource1: TDatasource
left = 127
top = 12
end
object SaveDialog1: TSaveDialog
DefaultExt = '.sql'
Filter = 'SQL File|*.sql|All files|*.*'
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
left = 785
top = 122
end
end