aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/SQLite/example/TestSqlite.dpr
blob: 596a3a04db6cf0e2d7447f65ff9f0873e222bd5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program TestSqlite;

uses
  Forms,
  uTestSqlite in 'uTestSqlite.pas' {Form1},
  SQLiteTable3 in 'SQLiteTable3.pas',
  SQLite3 in 'SQLite3.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.