mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
16 lines
290 B
ObjectPascal
16 lines
290 B
ObjectPascal
program QueryThreadExample;
|
|
|
|
uses
|
|
Forms,
|
|
Main in 'Main.pas' {Form1},
|
|
MysqlQueryThread in '..\..\MysqlQueryThread.pas',
|
|
MysqlQuery in '..\..\MysqlQuery.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|