Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 666 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 666 Bytes

Hello World Example

Build the DKO project first, or this won't work! ../../lib/dko.jar should exist.

The SQLite3 file helloworld.sqlite3 is the database in this example. If you have Sqlite Database Browser installed you can view it with:

$ sqlitebrowser helloworld.sqlite3

To extract the database schema, run:

$ ant extract-schemas

Then to build the project, run:

$ ant

Then to run the example, run:

$ ./helloworld.sh
Where is everyone from?
[Person id:1 name:Charles] is from [Place id:1 city:Houston state:Texas]

That's it!