diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-03-21 19:16:07 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-03-21 19:16:07 +0000 |
commit | 5d69ab51fd28961fd43b7e7646768b5a6dcbcb25 (patch) | |
tree | 5323292fcb46269f7dbbafe5a15ee399ad74675e /Lua/src/lib/SQLite/example/TestSqlite.dpr | |
parent | 220ae11b40e104d09e2c1ac08203c2a631294d99 (diff) | |
download | usdx-5d69ab51fd28961fd43b7e7646768b5a6dcbcb25.tar.gz usdx-5d69ab51fd28961fd43b7e7646768b5a6dcbcb25.tar.xz usdx-5d69ab51fd28961fd43b7e7646768b5a6dcbcb25.zip |
lua stuff moved to experimental folder
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1642 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Lua/src/lib/SQLite/example/TestSqlite.dpr')
-rw-r--r-- | Lua/src/lib/SQLite/example/TestSqlite.dpr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lua/src/lib/SQLite/example/TestSqlite.dpr b/Lua/src/lib/SQLite/example/TestSqlite.dpr new file mode 100644 index 00000000..596a3a04 --- /dev/null +++ b/Lua/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. |