Componentes.Terceros.RemObj.../internal/5.0.24.615/1/Data Abstract for Delphi/Samples/Dynamic SQL/DynSQLServer.dpr

22 lines
594 B
ObjectPascal

program DynSQLServer;
{#ROGEN:DynSQLLibrary.rodl} // RemObjects: Careful, do not remove!
uses
uROCOMInit,
Forms,
DynSQLServerMain in 'DynSQLServerMain.pas' {DynSQLServerMainForm},
DynSQLLibrary_Intf in 'DynSQLLibrary_Intf.pas',
DynSQLLibrary_Invk in 'DynSQLLibrary_Invk.pas',
DynSQLService_Impl in 'DynSQLService_Impl.pas' {DynSQLService: TRORemoteDataModule};
{$R *.RES}
{$R RODLFile.res}
begin
Application.Initialize;
Application.Title := 'DynSQL Server';
Application.CreateForm(TDynSQLServerMainForm, DynSQLServerMainForm);
Application.Run;
end.