-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataModule.h
More file actions
32 lines (31 loc) · 1.02 KB
/
DataModule.h
File metadata and controls
32 lines (31 loc) · 1.02 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
//---------------------------------------------------------------------------
#ifndef DataModuleH
#define DataModuleH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Data.DB.hpp>
#include <Data.Win.ADODB.hpp>
//---------------------------------------------------------------------------
class TDM : public TDataModule
{
__published: // IDE-managed Components
TADOTable *ADOTAdmins;
TADOTable *ADOTRegistration;
TADOTable *ADOTObjects;
TADOTable *ADOTBuyers;
TADOTable *ADOTSellers;
TDataSource *DSAdmins;
TDataSource *DSRegist;
TDataSource *DSObjects;
TDataSource *DSBuyers;
TDataSource *DSSellers;
TADOQuery *ADOQ;
TADOConnection *ADOConnection;
private: // User declarations
public: // User declarations
__fastcall TDM(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDM *DM;
//---------------------------------------------------------------------------
#endif