Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Unit3.pas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (show annotations) (download) (as text)
Fri Jul 22 23:40:03 2016 UTC (7 years, 8 months ago) by yamat0jp
File MIME type: text/x-pascal
File size: 1819 byte(s)
パスワードをハッシュ値に置き換えました
クッキーに対応
1 unit Unit3;
2
3 interface
4
5 uses
6 System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
7 FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf,
8 FireDAC.DApt.Intf, FireDAC.Stan.Async, FireDAC.DApt, FireDAC.UI.Intf,
9 FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Phys, FireDAC.Phys.IB,
10 FireDAC.Phys.IBDef, Data.DB, FireDAC.Comp.Client, FireDAC.Comp.DataSet;
11
12 type
13 TDataModule3 = class(TDataModule)
14 FDQuery1: TFDQuery;
15 FDTable1: TFDTable;
16 FDTable2: TFDTable;
17 item: TDataSource;
18 user: TDataSource;
19 FDConnection1: TFDConnection;
20 FDTable1NAME: TWideStringField;
21 FDTable1EMAIL: TWideStringField;
22 FDTable1BIRTH: TDateField;
23 FDTable1ADDRESS: TWideStringField;
24 FDTable1PASSWORD: TWideStringField;
25 FDTable1NUMBER: TIntegerField;
26 FDTable3: TFDTable;
27 form: TDataSource;
28 FDTable3NAME: TWideStringField;
29 FDTable3BGCOLOR: TIntegerField;
30 FDTable2NAME: TWideStringField;
31 FDTable2MAKER: TWideStringField;
32 FDTable2STOCK: TIntegerField;
33 FDTable2WEIGHT: TIntegerField;
34 FDTable2DATE: TDateField;
35 FDTable2COMMENT: TWideMemoField;
36 FDTable2CATEGORY: TWideStringField;
37 FDTable2IMAGE: TBlobField;
38 FDTable2PRICE: TIntegerField;
39 FDTable2THUMBNAIL: TBlobField;
40 FDTable2SERIAL: TIntegerField;
41 FDTable2MASTER: TIntegerField;
42 FDTable3MAILPASS: TWideStringField;
43 FDTable3MAILUSER: TWideStringField;
44 FDTable3MAILHOST: TWideStringField;
45 FDTable1DATE: TDateField;
46 private
47 { Private ���� }
48 public
49 { Public ���� }
50 end;
51
52 function DM: TDataModule3;
53
54 implementation
55
56 {%CLASSGROUP 'Vcl.Controls.TControl'}
57
58 uses ServerController;
59
60 {$R *.dfm}
61
62 function DM: TDataModule3;
63 begin
64 result:=UserSession.DM;
65 end;
66
67 end.

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