-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLocalSqlForm.dfm
More file actions
106 lines (106 loc) · 2.11 KB
/
LocalSqlForm.dfm
File metadata and controls
106 lines (106 loc) · 2.11 KB
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
object Form1: TForm1
Left = 70
Top = 226
Width = 640
Height = 400
Caption = 'LocalSQLExec sample'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
DesignSize = (
632
366)
PixelsPerInch = 96
TextHeight = 13
object EditFileName: TEdit
Left = 144
Top = 8
Width = 321
Height = 21
Color = clBtnFace
ReadOnly = True
TabOrder = 0
end
object BitBtn1: TBitBtn
Left = 464
Top = 8
Width = 81
Height = 21
Caption = 'Load script'
TabOrder = 1
OnClick = BitBtn1Click
end
object MemoScript: TRichEdit
Left = 8
Top = 40
Width = 617
Height = 185
Anchors = [akLeft, akTop, akRight]
Lines.Strings = (
'< Script is empty >')
ScrollBars = ssBoth
TabOrder = 2
end
object BitBtn2: TBitBtn
Left = 552
Top = 8
Width = 75
Height = 21
Caption = 'Execute'
TabOrder = 3
OnClick = BitBtn2Click
end
object MemoLog: TRichEdit
Left = 8
Top = 232
Width = 617
Height = 137
Anchors = [akLeft, akTop, akRight, akBottom]
Lines.Strings = (
'< Log >')
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 4
end
object ProgressBar: TProgressBar
Left = 8
Top = 8
Width = 129
Height = 21
Min = 0
Max = 100
TabOrder = 5
end
object Database: TDatabase
AliasName = 'DBDEMOS'
DatabaseName = 'LocalDatabase'
SessionName = 'Default'
TransIsolation = tiDirtyRead
Left = 96
Top = 16
end
object DBCConnectionBDE: TDBCConnectionBDE
Database = Database
OnErrorMessage = ShowErrorMessage
Left = 96
Top = 72
end
object LocalSQLExec: TLocalSQLExec
DBCConnection = DBCConnectionBDE
OnLogNextLine = LocalSQLExecLogNextLine
OnProgressUpdate = LocalSQLExecProgressUpdate
OnErrorMessage = ShowErrorMessage
Left = 96
Top = 120
end
object OpenDialog: TOpenDialog
Filter = 'Local SQL script (*.SQL)|*.sql|All files|*.*'
Left = 392
Top = 40
end
end