-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit3.dfm
164 lines (164 loc) · 3.91 KB
/
Unit3.dfm
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
object datamodule_CRUD: Tdatamodule_CRUD
OldCreateOrder = False
OnCreate = DataModuleCreate
Height = 279
Width = 210
object FDConnection1: TFDConnection
Params.Strings = (
'Database=C:\_Code\Bancos de Dados Firebird\CRUD.FDB'
'User_Name=SYSDBA'
'Password=masterkey'
'Port=3050'
'DriverID=FB')
Connected = True
LoginPrompt = False
Left = 32
Top = 32
end
object FDPhysFBDriverLink1: TFDPhysFBDriverLink
VendorLib = 'C:\Program Files (x86)\Firebird\Firebird_2_0\bin\fbclient.dll'
Left = 56
Top = 8
end
object DataSetProvider1: TDataSetProvider
DataSet = FDQuery1
Left = 32
Top = 128
end
object ClientDataSet1: TClientDataSet
Active = True
Aggregates = <>
IncludeBlobsInDelta = True
Params = <>
ProviderName = 'DataSetProvider1'
Left = 32
Top = 176
object ClientDataSet1ID: TIntegerField
FieldName = 'ID'
Origin = 'ID'
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
end
object ClientDataSet1NOME: TStringField
FieldName = 'NOME'
Origin = 'NOME'
end
object ClientDataSet1SOBRENOME: TStringField
FieldName = 'SOBRENOME'
Origin = 'SOBRENOME'
Size = 30
end
object ClientDataSet1VULGO: TStringField
FieldName = 'VULGO'
Origin = 'VULGO'
Size = 15
end
object ClientDataSet1NASCIMENTO: TDateField
FieldName = 'NASCIMENTO'
Origin = 'NASCIMENTO'
EditMask = '!99/99/00;1;_'
end
object ClientDataSet1CPF: TStringField
FieldName = 'CPF'
Origin = 'CPF'
EditMask = '000.000.000-aa;1;_'
Size = 14
end
object ClientDataSet1TELEFONE: TStringField
FieldName = 'TELEFONE'
Origin = 'TELEFONE'
EditMask = '!#00 (000) 0 0000-0000;0;'
Size = 15
end
object ClientDataSet1EMAIL: TStringField
FieldName = 'EMAIL'
Origin = 'EMAIL'
Size = 30
end
object ClientDataSet1INSTAGRAM: TStringField
FieldName = 'INSTAGRAM'
Origin = 'INSTAGRAM'
Size = 30
end
object ClientDataSet1TWITTER: TStringField
FieldName = 'TWITTER'
Origin = 'TWITTER'
Size = 30
end
object ClientDataSet1WEBSITE: TStringField
FieldName = 'WEBSITE'
Origin = 'WEBSITE'
Size = 40
end
object ClientDataSet1PIX: TStringField
FieldName = 'PIX'
Origin = 'PIX'
Size = 80
end
end
object FDQuery1: TFDQuery
Active = True
Connection = FDConnection1
SQL.Strings = (
'select * from PESSOAS')
Left = 32
Top = 80
object FDQuery1ID: TIntegerField
FieldName = 'ID'
Origin = 'ID'
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
end
object FDQuery1NOME: TStringField
FieldName = 'NOME'
Origin = 'NOME'
end
object FDQuery1SOBRENOME: TStringField
FieldName = 'SOBRENOME'
Origin = 'SOBRENOME'
Size = 30
end
object FDQuery1VULGO: TStringField
FieldName = 'VULGO'
Origin = 'VULGO'
Size = 15
end
object FDQuery1NASCIMENTO: TDateField
FieldName = 'NASCIMENTO'
Origin = 'NASCIMENTO'
end
object FDQuery1CPF: TStringField
FieldName = 'CPF'
Origin = 'CPF'
Size = 14
end
object FDQuery1TELEFONE: TStringField
FieldName = 'TELEFONE'
Origin = 'TELEFONE'
Size = 15
end
object FDQuery1EMAIL: TStringField
FieldName = 'EMAIL'
Origin = 'EMAIL'
Size = 30
end
object FDQuery1INSTAGRAM: TStringField
FieldName = 'INSTAGRAM'
Origin = 'INSTAGRAM'
Size = 30
end
object FDQuery1TWITTER: TStringField
FieldName = 'TWITTER'
Origin = 'TWITTER'
Size = 30
end
object FDQuery1WEBSITE: TStringField
FieldName = 'WEBSITE'
Origin = 'WEBSITE'
Size = 40
end
object FDQuery1PIX: TStringField
FieldName = 'PIX'
Origin = 'PIX'
Size = 80
end
end
end