-
Notifications
You must be signed in to change notification settings - Fork 0
/
U_Placar.dfm
172 lines (171 loc) · 4.17 KB
/
U_Placar.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
object U_FrmPlacar: TU_FrmPlacar
Left = 0
Top = 0
Caption = 'Placar'
ClientHeight = 452
ClientWidth = 481
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 481
Height = 452
Align = alClient
ParentBackground = False
TabOrder = 0
object PLACAR: TLabel
Left = 184
Top = 24
Width = 82
Height = 24
Caption = 'PLACAR'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Times New Roman'
Font.Style = [fsBold, fsItalic]
ParentFont = False
end
object DBGrid1: TDBGrid
Left = 112
Top = 64
Width = 241
Height = 201
Color = clBtnShadow
DataSource = DataSource1
FixedColor = clBtnShadow
ReadOnly = True
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'ID_JOGADOR'
Visible = True
end
item
Expanded = False
FieldName = 'NOME'
Width = 64
Visible = True
end
item
Expanded = False
FieldName = 'IDADE'
Visible = True
end
item
Expanded = False
FieldName = 'ID_PONTUACAO'
Width = 64
Visible = True
end
item
Expanded = False
FieldName = 'PONTOS'
Visible = True
end
item
Expanded = False
FieldName = 'DATA'
Visible = True
end
item
Expanded = False
FieldName = 'ID_JOGADOR_1'
Width = 64
Visible = True
end>
end
end
object FDConnection1: TFDConnection
Params.Strings = (
'Database=C:\Users\Ivanderson\Desktop\ADS 3'#186' semestre\Delphi\TRAB' +
'ALHOFINAL.FDB'
'User_Name=sysdba'
'Password=masterkey'
'DriverID=FB')
Connected = True
LoginPrompt = False
Left = 384
Top = 40
end
object FDTransaction1: TFDTransaction
Connection = FDConnection1
Left = 384
Top = 104
end
object FDQueryPlacar: TFDQuery
Connection = FDConnection1
Transaction = FDTransaction1
SQL.Strings = (
'select * from jogador as j'
'inner join pontuacao as p'
'on j.id_jogador = p.id_jogador'
''
'')
Left = 392
Top = 200
object FDQueryPlacarID_JOGADOR: TIntegerField
FieldName = 'ID_JOGADOR'
Origin = 'ID_JOGADOR'
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
Required = True
end
object FDQueryPlacarNOME: TStringField
FieldName = 'NOME'
Origin = 'NOME'
Size = 30
end
object FDQueryPlacarDATA_NASCIMENTO: TDateField
FieldName = 'DATA_NASCIMENTO'
Origin = 'DATA_NASCIMENTO'
end
object FDQueryPlacarID_PONTUACAO: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'ID_PONTUACAO'
Origin = 'ID_PONTUACAO'
ProviderFlags = []
ReadOnly = True
end
object FDQueryPlacarPONTOS: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'PONTOS'
Origin = 'PONTOS'
ProviderFlags = []
ReadOnly = True
end
object FDQueryPlacarDATA: TDateField
AutoGenerateValue = arDefault
FieldName = 'DATA'
Origin = '"DATA"'
ProviderFlags = []
ReadOnly = True
end
object FDQueryPlacarID_JOGADOR_1: TIntegerField
AutoGenerateValue = arDefault
FieldName = 'ID_JOGADOR_1'
Origin = 'ID_JOGADOR'
ProviderFlags = []
ReadOnly = True
end
end
object DataSource1: TDataSource
DataSet = FDQueryPlacar
Left = 392
Top = 264
end
end