Skip to content

Commit

Permalink
Example using direct usage of TDataSelect class (non-summary queries)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Berneda committed Aug 3, 2016
1 parent 9eef8cf commit 7bf8dab
Show file tree
Hide file tree
Showing 5 changed files with 1,515 additions and 0 deletions.
30 changes: 30 additions & 0 deletions demos/delphi/vcl/Query/Select_Queries/TeeBI_Select_Queries.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
program TeeBI_Select_Queries;

{.$DEFINE FASTMM}
{.$DEFINE LEAKCHECK}

uses
{$IFDEF FASTMM}
FastMM4,
{$ENDIF }
{$IFDEF LEAKCHECK}
LeakCheck,
{$ENDIF }
Vcl.Forms,
Unit24 in 'Unit24.pas' {Form24},
BI.Tests.SelectSamples in '..\..\..\..\..\tests\BI.Tests.SelectSamples.pas',
BI.Tests.SummarySamples in '..\..\..\..\..\tests\BI.Tests.SummarySamples.pas';

{$R *.res}

begin
{$IFOPT D+}
ReportMemoryLeaksOnShutdown:=True;
{$ENDIF}
//NeverSleepOnMMThreadContention:=True;

Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm24, Form24);
Application.Run;
end.
Loading

0 comments on commit 7bf8dab

Please sign in to comment.