You've already forked lazarus-ccr
14 lines
186 B
ObjectPascal
14 lines
186 B
ObjectPascal
![]() |
program DBExample;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
UDBExample in 'UDBExample.pas' {Form1};
|
||
|
|
||
|
{$R *.RES}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|