sql.dpr

来自「ODAC+SDAC源代码」· DPR 代码 · 共 27 行

DPR
27
字号
program Sql;

{%DelphiDotNetAssemblyCompiler 'Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Vcl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbCtrls.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'System.dll'}
{%DelphiDotNetAssemblyCompiler 'System.Data.dll'}
{%DelphiDotNetAssemblyCompiler 'System.Drawing.dll'}
{%DelphiDotNetAssemblyCompiler 'CoreLab.Dac.dll'}
{%DelphiDotNetAssemblyCompiler 'CoreLab.Sdac.dll'}

uses
  Forms,
  Main in 'Main.pas' {fmMain};

{$R *.RES}

[STAThread]

begin
  Application.Initialize;
  Application.CreateForm(TfmMain, fmMain);
  Application.Run;
end.

⌨️ 快捷键说明

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