sql.dpr
来自「ODAC 5.7.0.28」· DPR 代码 · 共 28 行
DPR
28 行
program Sql;
{%DelphiDotNetAssemblyCompiler 'System.Drawing.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Vcl.dll'}
{%DelphiDotNetAssemblyCompiler 'CoreLab.Dac.dll'}
uses
{$IFNDEF LINUX}
Forms,
{$ELSE}
QForms,
{$ENDIF}
Main in 'Main.pas' {fmMain},
ParamType in 'ParamType.pas' {fmParamType};
{$R *.res}
[STAThread]
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
Application.CreateForm(TfmParamType, fmParamType);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?