Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Unit4.dfm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download)
Sun Nov 22 11:18:44 2015 UTC (8 years, 3 months ago) by yamat0jp
File size: 4124 byte(s)
方向性はあってますが技術的に行き詰っています.IntraWebの情報・経験が不足しています.
ボタンでフォームを切り替えることさえうまくいきませんがセッションの問題でしょうか?
1 object DataModule1: TDataModule1
2 OldCreateOrder = False
3 Height = 228
4 Width = 215
5 object FDTable1: TFDTable
6 Active = True
7 IndexFieldNames = 'NUMBER'
8 Connection = FDConnection1
9 UpdateOptions.UpdateTableName = 'USER_DATA'
10 TableName = 'USER_DATA'
11 Left = 87
12 Top = 6
13 object FDTable1NAME: TWideStringField
14 FieldName = 'NAME'
15 Origin = 'NAME'
16 Required = True
17 Size = 80
18 end
19 object FDTable1EMAIL: TWideStringField
20 FieldName = 'EMAIL'
21 Origin = 'EMAIL'
22 Size = 80
23 end
24 object FDTable1BIRTH: TDateField
25 FieldName = 'BIRTH'
26 Origin = 'BIRTH'
27 end
28 object FDTable1ADDRESS: TWideStringField
29 FieldName = 'ADDRESS'
30 Origin = 'ADDRESS'
31 Size = 480
32 end
33 object FDTable1PASSWORD: TWideStringField
34 FieldName = 'PASSWORD'
35 Origin = '"PASSWORD"'
36 Size = 80
37 end
38 object FDTable1NUMBER: TIntegerField
39 FieldName = 'NUMBER'
40 Origin = 'NUMBER'
41 ReadOnly = True
42 end
43 end
44 object FDTable2: TFDTable
45 Active = True
46 IndexFieldNames = 'SERIAL'
47 Connection = FDConnection1
48 UpdateOptions.UpdateTableName = 'ITEM_DATA'
49 TableName = 'ITEM_DATA'
50 Left = 15
51 Top = 5
52 object FDTable2NAME: TWideStringField
53 FieldName = 'NAME'
54 Origin = 'NAME'
55 Required = True
56 Size = 480
57 end
58 object FDTable2MAKER: TWideStringField
59 FieldName = 'MAKER'
60 Origin = 'MAKER'
61 Size = 480
62 end
63 object FDTable2STOCK: TIntegerField
64 FieldName = 'STOCK'
65 Origin = 'STOCK'
66 end
67 object FDTable2WEIGHT: TIntegerField
68 FieldName = 'WEIGHT'
69 Origin = 'WEIGHT'
70 end
71 object FDTable2DATE: TDateField
72 FieldName = 'DATE'
73 Origin = '"DATE"'
74 end
75 object FDTable2COMMENT: TMemoField
76 FieldName = 'COMMENT'
77 Origin = 'COMMENT'
78 BlobType = ftMemo
79 end
80 object FDTable2CATEGORY: TWideStringField
81 FieldName = 'CATEGORY'
82 Origin = 'CATEGORY'
83 Size = 80
84 end
85 object FDTable2IMAGE: TBlobField
86 FieldName = 'IMAGE'
87 Origin = 'IMAGE'
88 end
89 object FDTable2PRICE: TIntegerField
90 FieldName = 'PRICE'
91 Origin = 'PRICE'
92 Required = True
93 end
94 object FDTable2THUMBNAIL: TBlobField
95 FieldName = 'THUMBNAIL'
96 Origin = 'THUMBNAIL'
97 end
98 object FDTable2SERIAL: TIntegerField
99 FieldName = 'SERIAL'
100 Origin = 'SERIAL'
101 end
102 end
103 object item: TDataSource
104 DataSet = FDTable2
105 Left = 24
106 Top = 77
107 end
108 object user: TDataSource
109 DataSet = FDTable1
110 Left = 87
111 Top = 62
112 end
113 object FDConnection1: TFDConnection
114 Params.Strings = (
115 'User_Name=sysdba'
116 'Password=masterkey'
117 'CharacterSet=UTF8'
118
119 'Database=E:\fuke masasi\My App\zencart_clone\Win64\Release\wwwro' +
120 'ot\db\MYCART.GDB'
121 'DriverID=IB')
122 Connected = True
123 LoginPrompt = False
124 Left = 152
125 Top = 78
126 end
127 object FDTable3: TFDTable
128 Active = True
129 Connection = FDConnection1
130 UpdateOptions.UpdateTableName = 'FORM_DATA'
131 TableName = 'FORM_DATA'
132 Left = 24
133 Top = 128
134 object FDTable3NAME: TWideStringField
135 FieldName = 'NAME'
136 Origin = 'NAME'
137 Size = 80
138 end
139 object FDTable3BGCOLOR: TIntegerField
140 FieldName = 'BGCOLOR'
141 Origin = 'BGCOLOR'
142 end
143 end
144 object form: TDataSource
145 DataSet = FDTable3
146 Left = 96
147 Top = 128
148 end
149 object FDQuery1: TFDQuery
150 Connection = FDConnection1
151 SQL.Strings = (
152 'select name,maker,image,volume,price'
153 ' from cart_data join item_data'
154 ' on (cart_data.serial = item_data.serial)'
155 ' where number = :num;')
156 Left = 96
157 Top = 176
158 ParamData = <
159 item
160 Name = 'NUM'
161 DataType = ftInteger
162 ParamType = ptInput
163 Value = 0
164 end>
165 end
166 object cart: TDataSource
167 DataSet = FDQuery1
168 Left = 152
169 Top = 176
170 end
171 end

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26