diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-22 09:21:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-22 09:21:32 +0200 |
commit | 0da4b5d62dc10993db4d55236cb175e891a9c62b (patch) | |
tree | 6402eb39a8471415ba5bacb8a15073c59ccba89e /README | |
parent | b2fcd4dcdeb0f4962f8c8a1ce1a6fd64c2014062 (diff) |
Add --table-prefix option
Assign unique table prefixes to most examples. This makes sure that
we don't end up with broken schemas where half of the tables were
changed by the next test and the other half has foreign keys that
now point to nowhere.
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ This package contains the ODB examples. The following list gives an overview of the available examples. See the README file accompanying each example for more information. +Note also that most of the examples use the --table-prefix ODB compiler +option to assign a unique prefix to tables created by each example. This +is done to allow examples to run against the same database without +causing any schema conflicts. You don't have to use this option in your +own applications. + hello A "Hello World" example that shows how to use ODB to perform basic database operations. |