aboutsummaryrefslogtreecommitdiffstats
path: root/mediaplugin/src/lib/SQLite/example/TestSqlite.dpr
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-10-19 16:39:31 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-10-19 16:39:31 +0000
commit0b60f71cb853b35e53d0b407493dbcfc098ed40e (patch)
tree03221c792a89f8c885288a73d1041ea5dc7aee4f /mediaplugin/src/lib/SQLite/example/TestSqlite.dpr
parenta52499fa9f5e7f37c70bfb7a4145554168ec30f0 (diff)
downloadusdx-0b60f71cb853b35e53d0b407493dbcfc098ed40e.tar.gz
usdx-0b60f71cb853b35e53d0b407493dbcfc098ed40e.tar.xz
usdx-0b60f71cb853b35e53d0b407493dbcfc098ed40e.zip
initial commit
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2684 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'mediaplugin/src/lib/SQLite/example/TestSqlite.dpr')
-rw-r--r--mediaplugin/src/lib/SQLite/example/TestSqlite.dpr15
1 files changed, 15 insertions, 0 deletions
diff --git a/mediaplugin/src/lib/SQLite/example/TestSqlite.dpr b/mediaplugin/src/lib/SQLite/example/TestSqlite.dpr
new file mode 100644
index 00000000..596a3a04
--- /dev/null
+++ b/mediaplugin/src/lib/SQLite/example/TestSqlite.dpr
@@ -0,0 +1,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.