-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example using direct usage of TDataSelect class (non-summary queries)
- Loading branch information
David Berneda
committed
Aug 3, 2016
1 parent
9eef8cf
commit 7bf8dab
Showing
5 changed files
with
1,515 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
demos/delphi/vcl/Query/Select_Queries/TeeBI_Select_Queries.dpr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.