-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuMain.~dfm
More file actions
executable file
·150 lines (150 loc) · 2.83 KB
/
uMain.~dfm
File metadata and controls
executable file
·150 lines (150 loc) · 2.83 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
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
141
142
143
144
145
146
147
148
149
150
object frmMain: TfrmMain
Left = 257
Top = 200
Width = 249
Height = 332
Caption = 'Delphi'#36830#25509'MySQL'#31034#20363' QQ:10426013'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 65
Width = 34
Height = 16
AutoSize = False
Caption = #22320#22336
end
object Label2: TLabel
Left = 16
Top = 93
Width = 34
Height = 16
AutoSize = False
Caption = #31471#21475
end
object Label3: TLabel
Left = 16
Top = 121
Width = 34
Height = 16
AutoSize = False
Caption = #25968#25454#24211
end
object Label4: TLabel
Left = 16
Top = 149
Width = 34
Height = 16
AutoSize = False
Caption = #24080#21495
end
object Label5: TLabel
Left = 16
Top = 177
Width = 34
Height = 16
AutoSize = False
Caption = #23494#30721
end
object Label6: TLabel
Left = 24
Top = 18
Width = 201
Height = 35
Alignment = taCenter
AutoSize = False
Caption = #36830#25509'MySQL'#31034#20363
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = #23435#20307
Font.Style = [fsBold]
ParentFont = False
end
object Label7: TLabel
Left = 16
Top = 205
Width = 34
Height = 16
AutoSize = False
Caption = 'SQL'
end
object txtAddress: TEdit
Left = 55
Top = 62
Width = 161
Height = 21
TabOrder = 0
Text = '127.0.0.1'
end
object txtPort: TEdit
Left = 55
Top = 90
Width = 161
Height = 21
TabOrder = 1
Text = '3306'
end
object txtDatabaseName: TEdit
Left = 55
Top = 118
Width = 161
Height = 21
TabOrder = 2
Text = 'test1'
end
object txtUsername: TEdit
Left = 55
Top = 146
Width = 161
Height = 21
TabOrder = 3
Text = 'root'
end
object txtPassword: TEdit
Left = 55
Top = 174
Width = 161
Height = 21
TabOrder = 4
Text = '123456'
end
object btnConnect: TBitBtn
Left = 72
Top = 243
Width = 75
Height = 25
Caption = #36830#25509
TabOrder = 5
OnClick = btnConnectClick
end
object txtSQL: TEdit
Left = 55
Top = 202
Width = 161
Height = 21
TabOrder = 6
Text = ' select 99*9'
end
object MySQLUniProvider1: TMySQLUniProvider
Left = 48
Top = 24
end
object UniConnection1: TUniConnection
ProviderName = 'MySQL'
Left = 16
Top = 24
end
object UniQuery1: TUniQuery
Connection = UniConnection1
Left = 80
Top = 24
end
end