server.dpr

来自「Direct Oracle Access 非常好的Oracle数据库直接访问组」· DPR 代码 · 共 33 行

DPR
33
字号
// Direct Oracle Access - Server
// Allround Automations
// support@allroundautomations.nl
// http://www.allroundautomations.nl
//
// This application demonstrates:
// - The Server part of a 3 Tier application
// - The use of the TOracleDataSet component in a Server Application

// This is a tray-icon application, it will show up as an icon on the
// bottom right of your screen.
// Click it to display the main form.

program Server;

uses
  Forms,
  ServerUnit in 'ServerUnit.pas' {MainForm},
  Server_TLB in 'Server_TLB.pas',
  ServerDM in 'ServerDM.pas' {ServerDMClass: TRemoteDataModule} {ServerDMClass: CoClass};

{$R *.TLB}

{$R *.RES}

begin
  Application.Initialize;
  // Prevent the MainForm from showing 
  Application.ShowMainForm := False;
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?