delphimvcframework/samples/renders/MyDataModuleU.pas
Daniele Teti 4108b63405 FIXED a bug with ftAutoInc field type
Updated routingsample.dproj and renders.dproj
2017-04-20 23:49:37 +02:00

37 lines
880 B
ObjectPascal

unit MyDataModuleU;
interface
uses
System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Phys.FB,
FireDAC.Phys.FBDef, FireDAC.Stan.Param, FireDAC.DatS,
FireDAC.DApt.Intf, FireDAC.DApt, FireDAC.Phys.IBBase, Data.DB,
FireDAC.Comp.DataSet, FireDAC.Comp.Client, FireDAC.ConsoleUI.Wait,
FireDAC.Comp.UI;
type
TMyDataModule = class(TDataModule)
FDConnection1: TFDConnection;
qryCustomers: TFDQuery;
FDPhysFBDriverLink1: TFDPhysFBDriverLink;
qryCountry: TFDQuery;
FDGUIxWaitCursor1: TFDGUIxWaitCursor;
private
{ Private declarations }
public
{ Public declarations }
end;
var
MyDataModule: TMyDataModule;
implementation
{%CLASSGROUP 'Vcl.Controls.TControl'}
{$R *.dfm}
end.