ODAC+SDAC源代码
源代码在线查看: text.dpr
program Text;
{%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.