-
Notifications
You must be signed in to change notification settings - Fork 0
/
dm.dfm
208 lines (205 loc) · 5.21 KB
/
dm.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
object dmodule: Tdmodule
OldCreateOrder = False
Height = 403
Width = 391
object dsPedidos: TDataSource
DataSet = queryPedidos
Left = 88
Top = 134
end
object dsClientes: TDataSource
DataSet = queryClientes
Left = 88
Top = 80
end
object queryClientes: TFDQuery
Active = True
Connection = Conn
SQL.Strings = (
'select * from clientes')
Left = 24
Top = 80
end
object queryPedidos: TFDQuery
Active = True
IndexFieldNames = 'cliente_id__'
MasterSource = dsClientes
MasterFields = 'id'
DetailFields = 'id'
Connection = Conn
SQL.Strings = (
'select * from pedidos where cliente_id__ = :id')
Left = 24
Top = 134
ParamData = <
item
Name = 'ID'
DataType = ftAutoInc
ParamType = ptInput
Value = 1
end>
object queryPedidosid: TFDAutoIncField
FieldName = 'id'
Origin = 'id'
ProviderFlags = [pfInWhere, pfInKey]
end
object queryPedidosdata: TDateTimeField
FieldName = 'data'
Origin = 'data'
end
object queryPedidoscliente_id__: TIntegerField
FieldName = 'cliente_id__'
Origin = 'cliente_id__'
end
end
object FDPhysSQLiteDriverLink1: TFDPhysSQLiteDriverLink
Left = 88
Top = 8
end
object Conn: TFDConnection
Params.Strings = (
'Database=C:\Users\roger\Documents\desenvolvimento\delphi\tutoria' +
'is\Firedac\mestre_detalhe\teste.db'
'OpenMode=ReadWrite'
'LockingMode=Normal'
'DriverID=SQLite')
Connected = True
LoginPrompt = False
Left = 24
Top = 8
end
object queryDetalhesPedido: TFDQuery
Active = True
MasterSource = dsPedidos
MasterFields = 'id'
DetailFields = 'id'
Connection = Conn
FetchOptions.AssignedValues = [evCache]
FetchOptions.Cache = [fiBlobs, fiMeta]
SQL.Strings = (
'select produtos.descricao, produtos_pedidos__.preco, produtos_pe' +
'didos__.quantidade, produtos.id, produtos_pedidos__.produtos_id_' +
'_ as produtos_id,'
'produtos_pedidos__.pedidos_id__ as pedidos_id from produtos_ped' +
'idos__'
'inner join produtos'
'on produtos.id = produtos_pedidos__.produtos_id__ '
'inner join pedidos'
'on produtos_pedidos__.pedidos_id__ = pedidos.id'
'inner join clientes'
'on pedidos.cliente_id__ = clientes.id'
'where pedidos.id = :id')
Left = 24
Top = 192
ParamData = <
item
Name = 'ID'
DataType = ftAutoInc
ParamType = ptInput
Value = Null
end>
object queryDetalhesPedidodescricao: TStringField
FieldName = 'descricao'
Origin = 'descricao'
ProviderFlags = []
ReadOnly = True
Size = 255
end
object queryDetalhesPedidopreco: TFloatField
AutoGenerateValue = arDefault
FieldName = 'preco'
Origin = 'preco'
ProviderFlags = []
ReadOnly = True
currency = True
end
object queryDetalhesPedidoquantidade: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'quantidade'
Origin = 'quantidade'
ProviderFlags = []
ReadOnly = True
end
object queryDetalhesPedidoid: TFDAutoIncField
FieldName = 'id'
Origin = 'id'
ProviderFlags = [pfInWhere, pfInKey]
end
object queryDetalhesPedidoprodutos_id: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'produtos_id'
Origin = 'produtos_id__'
ProviderFlags = [pfInWhere]
end
object queryDetalhesPedidopedidos_id: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'pedidos_id'
Origin = 'pedidos_id__'
ProviderFlags = []
ReadOnly = True
end
end
object dsDetalhesPedido: TDataSource
DataSet = queryDetalhesPedido
Left = 88
Top = 192
end
object queryProdutos: TFDQuery
Active = True
Connection = Conn
SQL.Strings = (
'select * from produtos')
Left = 24
Top = 256
object queryProdutosid: TFDAutoIncField
FieldName = 'id'
Origin = 'id'
ProviderFlags = [pfInWhere, pfInKey]
end
object queryProdutosdescricao: TStringField
FieldName = 'descricao'
Origin = 'descricao'
Size = 255
end
object queryProdutospreco: TFloatField
FieldName = 'preco'
Origin = 'preco'
currency = True
end
end
object dsProdutos: TDataSource
DataSet = queryProdutos
Left = 88
Top = 256
end
object queryVenda: TFDQuery
Active = True
CachedUpdates = True
IndexFieldNames = 'id'
MasterSource = dsPedidos
MasterFields = 'id'
DetailFields = 'id'
Connection = Conn
SQL.Strings = (
'select produtos_pedidos__.id, produtos_pedidos__.pedidos_id__,'
'produtos_pedidos__.preco, produtos_pedidos__.produtos_id__,'
'produtos_pedidos__.quantidade from produtos_pedidos__'
'inner join pedidos'
'on produtos_pedidos__.pedidos_id__ = pedidos.id'
'where pedidos.id = :id')
Left = 24
Top = 328
ParamData = <
item
Name = 'ID'
DataType = ftAutoInc
ParamType = ptInput
Value = 1
end>
end
object dsVenda: TDataSource
DataSet = queryVenda
Left = 88
Top = 328
end
end