-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDataModule1.h
More file actions
47 lines (46 loc) · 1.63 KB
/
DataModule1.h
File metadata and controls
47 lines (46 loc) · 1.63 KB
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
//---------------------------------------------------------------------------
#ifndef DataModule1H
#define DataModule1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "dbcConnection_FireDAC.hpp"
#include "dbcDBEngine.hpp"
#include <DB.hpp>
#include <FireDAC.Comp.Client.hpp>
#include <FireDAC.Phys.hpp>
#include <FireDAC.Phys.Intf.hpp>
#include <FireDAC.Stan.Async.hpp>
#include <FireDAC.Stan.Def.hpp>
#include <FireDAC.Stan.Error.hpp>
#include <FireDAC.Stan.Intf.hpp>
#include <FireDAC.Stan.Option.hpp>
#include <FireDAC.Stan.Pool.hpp>
#include <FireDAC.UI.Intf.hpp>
#include <FireDAC.Phys.FB.hpp>
#include <FireDAC.Phys.FBDef.hpp>
#include <FireDAC.Phys.IBBase.hpp>
#include <FireDAC.Comp.UI.hpp>
#include <FireDAC.VCLUI.Wait.hpp>
//---------------------------------------------------------------------------
class TDataMd : public TDataModule
{
__published: // IDE-managed Components
TDBCConnectionFireDAC *DBCConnection1;
TDBCConnectionFireDAC *DBCConnection2;
TFDConnection *FDConnection1;
TFDConnection *FDConnection2;
TFDPhysFBDriverLink *FDPhysFBDriverLink1;
TFDGUIxWaitCursor *FDGUIxWaitCursor1;
void __fastcall DBCConnection1BeforeConnect(TObject *Sender);
void __fastcall DBCConnection2BeforeConnect(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TDataMd(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDataMd *DataMd;
//---------------------------------------------------------------------------
#endif